shopify_api 0.9.6

Shopify API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod frameworks;
pub mod verify;
pub mod webhook;
use serde::{Deserialize, Serialize};

#[derive(Debug, Deserialize, Serialize, Clone)]
pub struct ShopifyWebhook {
    id: u64,
    address: String,
    topic: String,
    created_at: String,
    updated_at: String,
    format: String,
    fields: Vec<String>,
    metafield_namespaces: Vec<String>,
    api_version: String,
    private_metafield_namespaces: Vec<String>,
}