ResultCustomerSubscriptionContractUpdateSubscription
顧客向け定期購買契約の更新
type ResultCustomerSubscriptionContractUpdateSubscription {
lineId: String!
productId: String
variantId: String
title: String!
variantTitle: String
onlineStorePreviewUrl: String!
variantImage: String
sku: String
quantity: Int!
currentPriceAmount: Int!
currentPriceCurrencyCode: String!
sellingPlanId: String
sellingPlanName: String!
}
Fields
ResultCustomerSubscriptionContractUpdateSubscription.lineId
● String!
non-null scalar
SubscriptionLine の globally-unique ID.
- 説明: 定期購買契約の商品ID
- データ例:
"gid://shopify/SubscriptionLine/1234567890"
ResultCustomerSubscriptionContractUpdateSubscription.productId
● String
scalar
商品ID
- データ例:
"gid://shopify/Product/1234567890"
ResultCustomerSubscriptionContractUpdateSubscription.variantId
● String
scalar
商品バリエーションID
- データ例:
"gid://shopify/ProductVariant/1234567890"
ResultCustomerSubscriptionContractUpdateSubscription.title
● String!
non-null scalar
商品名
- データ例:
"商品タイトル"
ResultCustomerSubscriptionContractUpdateSubscription.variantTitle
● String
scalar
バリエーション名
- データ例:
"バリエーションタイトル"
ResultCustomerSubscriptionContractUpdateSubscription.onlineStorePreviewUrl
● String!
non-null scalar
ストアフロント上のプレビューURL
- データ例:
"https://example.com/online-store-preview
ResultCustomerSubscriptionContractUpdateSubscription.variantImage
● String
scalar
バリエーション画像URL
- データ例:
"https://example.com/variant-image.jpg"
ResultCustomerSubscriptionContractUpdateSubscription.sku
● String
scalar
SKU
- データ例:
"SKU1234567890"
ResultCustomerSubscriptionContractUpdateSubscription.quantity
● Int!
non-null scalar
数量
- データ例:
1
ResultCustomerSubscriptionContractUpdateSubscription.currentPriceAmount
● Int!
non-null scalar
単価
- データ例:
1000
ResultCustomerSubscriptionContractUpdateSubscription.currentPriceCurrencyCode
● String!
non-null scalar
単価の通貨
- データ例:
"JPY"
ResultCustomerSubscriptionContractUpdateSubscription.sellingPlanId
● String
scalar
プランID
- データ例:
"gid://shopify/SellingPlan/1234567890"
ResultCustomerSubscriptionContractUpdateSubscription.sellingPlanName
● String!
non-null scalar
プラン名
- データ例:
"プラン名"
Example
"{\n\t\"lineId\": \"gid://shopify/SubscriptionLine/1234567890\",\n\t\"productId\": \"gid://shopify/Product/1234567890\",\n\t\"variantId\": \"gid://shopify/ProductVariant/1234567890\",\n\t\"title\": \"商品タイトル\",\n\t\"variantTitle\": \"バリエーションタイトル\",\n\t\"onlineStorePreviewUrl\": \"https://example.com/online-store-preview\"\n\t\"variantImage\": \"https://example.com/variant-image.jpg\",\n\t\"sku\": \"SKU1234567890\",\n\t\"quantity\": 1,\n\t\"currentPriceAmount\": 1000,\n\t\"currentPriceCurrencyCode\": \"JPY\",\n\t\"sellingPlanId\": \"gid://shopify/SellingPlan/1234567890\",\n\t\"sellingPlanName\": \"プラン名\",\n}"