wallee
Version:
TypeScript/JavaScript client for wallee
16 lines (15 loc) • 413 B
TypeScript
import { Address } from "./Address";
declare class ShopifySubscriptionAddress extends Address {
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { ShopifySubscriptionAddress };