wallee
Version:
TypeScript/JavaScript client for wallee
21 lines (20 loc) • 565 B
TypeScript
import { CreationEntityState } from "./CreationEntityState";
import { SubscriberUpdate } from "./SubscriberUpdate";
declare class SubscriberActive extends SubscriberUpdate {
/**
* 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 { SubscriberActive };