UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

14 lines (13 loc) 575 B
export interface CreateContact { email?: string; attributes?: object; emailBlacklisted?: boolean; smsBlacklisted?: boolean; listIds?: Array<number>; updateEnabled?: boolean; smtpBlacklistSender?: Array<string>; } export declare function instanceOfCreateContact(value: object): boolean; export declare function CreateContactFromJSON(json: any): CreateContact; export declare function CreateContactFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateContact; export declare function CreateContactToJSON(value?: CreateContact | null): any;