1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//! Common types and embedded structs used across multiple REST resources.
//!
//! This module provides shared types that are embedded within other resources,
//! such as addresses, line items, tax lines, and discount applications.
//!
//! These types are not full REST resources themselves (they don't implement
//! `RestResource`), but are used as nested data within resources like `Order`,
//! `Product`, and `Customer`.
//!
//! # Example
//!
//! ```rust,ignore
//! use shopify_sdk::rest::resources::v2025_10::common::{Address, LineItem, TaxLine};
//!
//! // Address is embedded in orders and customers
//! let address = Address {
//! first_name: Some("John".to_string()),
//! last_name: Some("Doe".to_string()),
//! address1: Some("123 Main St".to_string()),
//! city: Some("New York".to_string()),
//! province: Some("New York".to_string()),
//! country: Some("United States".to_string()),
//! zip: Some("10001".to_string()),
//! ..Default::default()
//! };
//! ```
pub use ;
pub use ;
pub use BlogCommentable;
pub use ;
pub use ;
pub use MetafieldOwner;
pub use ;
pub use ;
pub use ThemeRole;
pub use ;