wallee
Version:
TypeScript/JavaScript client for wallee
25 lines (24 loc) • 837 B
TypeScript
import { AbstractSubscriberUpdate } from "./AbstractSubscriberUpdate";
import { CreationEntityState } from "./CreationEntityState";
declare class SubscriberCreate extends AbstractSubscriberUpdate {
/**
* The object's current state.
*/
'state'?: CreationEntityState;
/**
* 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;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export { SubscriberCreate };