@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
18 lines (17 loc) • 660 B
TypeScript
export interface SendTransacSms {
sender: string;
recipient: string;
content: string;
type?: SendTransacSmsTypeEnum;
tag?: string;
webUrl?: string;
organisationPrefix?: string;
}
export declare enum SendTransacSmsTypeEnum {
Transactional = "transactional",
Marketing = "marketing"
}
export declare function instanceOfSendTransacSms(value: object): boolean;
export declare function SendTransacSmsFromJSON(json: any): SendTransacSms;
export declare function SendTransacSmsFromJSONTyped(json: any, ignoreDiscriminator: boolean): SendTransacSms;
export declare function SendTransacSmsToJSON(value?: SendTransacSms | null): any;