@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
11 lines (10 loc) • 577 B
TypeScript
export interface GetExtendedClientAllOfAddress {
street: string;
city: string;
zipCode: string;
country: string;
}
export declare function instanceOfGetExtendedClientAllOfAddress(value: object): boolean;
export declare function GetExtendedClientAllOfAddressFromJSON(json: any): GetExtendedClientAllOfAddress;
export declare function GetExtendedClientAllOfAddressFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetExtendedClientAllOfAddress;
export declare function GetExtendedClientAllOfAddressToJSON(value?: GetExtendedClientAllOfAddress | null): any;