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