wallee
Version:
TypeScript/JavaScript client for wallee
36 lines (35 loc) • 938 B
TypeScript
import { AbstractShopifySubscriptionProductUpdate } from "./AbstractShopifySubscriptionProductUpdate";
declare class ShopifySubscriptionProductCreate extends AbstractShopifySubscriptionProductUpdate {
/**
* The ID of the Shopify product that is enabled to be ordered as subscription.
*/
'productId'?: string;
/**
* The legacy ID of the Shopify product that is enabled to be ordered as subscription.
*/
'productLegacyId': string;
/**
*
*/
'productVariantId'?: string;
/**
*
*/
'productVariantLegacyId': string;
/**
*
*/
'shop': number;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { ShopifySubscriptionProductCreate };