wallee
Version:
TypeScript/JavaScript client for wallee
39 lines (38 loc) • 1.03 kB
TypeScript
declare class ShopifySubscriberActive {
/**
* The ID is the primary key of the entity. The ID identifies the entity uniquely.
*/
'id': number;
/**
* The version number indicates the version of the entity. The version is incremented whenever the entity is changed.
*/
'version': number;
/**
*
*/
'emailAddress'?: string;
/**
*
*/
'externalGid'?: string;
/**
* A client generated nonce which identifies the entity to be created. Subsequent creation requests with the same external ID will not create new entities but return the initially created entity instead.
*/
'externalId'?: string;
/**
*
*/
'phoneNumber'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { ShopifySubscriberActive };