shopify_api 0.10.0

Shopify API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod frameworks;
pub mod verify;
pub mod webhook;

use serde::{Deserialize, Serialize};

#[derive(Debug, Deserialize, Serialize, Clone, Eq, PartialEq)]
pub struct WebhookSubscription {
    pub id: String,
    pub topic: String,
    pub format: String,
    pub uri: String,
}