UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.61 kB
/** * API v4 * Swagger documentation for API v4 * * The version of the OpenAPI document: 4.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { SoSZipcodeEntityBase } from './SoSZipcodeEntityBase'; /** * * @export * @interface V4ZipcodesGetZipcodeResponseDto */ export interface V4ZipcodesGetZipcodeResponseDto { /** * List of zipcodes retrieved from the database * @type {Array<SoSZipcodeEntityBase>} * @memberof V4ZipcodesGetZipcodeResponseDto */ objects: Array<SoSZipcodeEntityBase>; /** * Total count of zipcodes matching the query * @type {number} * @memberof V4ZipcodesGetZipcodeResponseDto */ count: number; } /** * Check if a given object implements the V4ZipcodesGetZipcodeResponseDto interface. */ export declare function instanceOfV4ZipcodesGetZipcodeResponseDto(value: object): value is V4ZipcodesGetZipcodeResponseDto; export declare function V4ZipcodesGetZipcodeResponseDtoFromJSON(json: any): V4ZipcodesGetZipcodeResponseDto; export declare function V4ZipcodesGetZipcodeResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ZipcodesGetZipcodeResponseDto; export declare function V4ZipcodesGetZipcodeResponseDtoToJSON(json: any): V4ZipcodesGetZipcodeResponseDto; export declare function V4ZipcodesGetZipcodeResponseDtoToJSONTyped(value?: V4ZipcodesGetZipcodeResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4ZipcodesGetZipcodeResponseDto.d.ts.map