@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
19 lines (18 loc) • 939 B
TypeScript
import type { GetAccountAllOfMarketingAutomation } from './GetAccountAllOfMarketingAutomation.js';
import type { GetAccountAllOfPlan } from './GetAccountAllOfPlan.js';
import type { GetAccountAllOfRelay } from './GetAccountAllOfRelay.js';
import type { GetExtendedClientAllOfAddress } from './GetExtendedClientAllOfAddress.js';
export interface GetAccount {
email: string;
firstName: string;
lastName: string;
companyName: string;
address: GetExtendedClientAllOfAddress;
plan: Array<GetAccountAllOfPlan>;
relay: GetAccountAllOfRelay;
marketingAutomation?: GetAccountAllOfMarketingAutomation;
}
export declare function instanceOfGetAccount(value: object): boolean;
export declare function GetAccountFromJSON(json: any): GetAccount;
export declare function GetAccountFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetAccount;
export declare function GetAccountToJSON(value?: GetAccount | null): any;