@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
13 lines (12 loc) • 623 B
TypeScript
import type { GetExtendedClientAllOfAddress } from './GetExtendedClientAllOfAddress.js';
export interface GetExtendedClient {
email: string;
firstName: string;
lastName: string;
companyName: string;
address: GetExtendedClientAllOfAddress;
}
export declare function instanceOfGetExtendedClient(value: object): boolean;
export declare function GetExtendedClientFromJSON(json: any): GetExtendedClient;
export declare function GetExtendedClientFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetExtendedClient;
export declare function GetExtendedClientToJSON(value?: GetExtendedClient | null): any;