wallee
Version:
TypeScript/JavaScript client for wallee
34 lines (33 loc) • 829 B
TypeScript
import { CreationEntityState } from "./CreationEntityState";
declare class AbstractSubscriptionAffiliateUpdate {
/**
* The language that is linked to the object.
*/
'language'?: string;
/**
* Allow to store additional information about the object.
*/
'metaData'?: {
[]: string;
};
/**
* The name used to identify the affiliate.
*/
'name'?: 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 { AbstractSubscriptionAffiliateUpdate };