UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.7 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 { SoSCountyEntityBase } from './SoSCountyEntityBase'; /** * * @export * @interface V4CountiesGetCountyColumnsResponseDto */ export interface V4CountiesGetCountyColumnsResponseDto { /** * List of counties retrieved from the database * @type {Array<SoSCountyEntityBase>} * @memberof V4CountiesGetCountyColumnsResponseDto */ objects: Array<SoSCountyEntityBase>; /** * Total count of counties matching the query * @type {number} * @memberof V4CountiesGetCountyColumnsResponseDto */ count: number; } /** * Check if a given object implements the V4CountiesGetCountyColumnsResponseDto interface. */ export declare function instanceOfV4CountiesGetCountyColumnsResponseDto(value: object): value is V4CountiesGetCountyColumnsResponseDto; export declare function V4CountiesGetCountyColumnsResponseDtoFromJSON(json: any): V4CountiesGetCountyColumnsResponseDto; export declare function V4CountiesGetCountyColumnsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4CountiesGetCountyColumnsResponseDto; export declare function V4CountiesGetCountyColumnsResponseDtoToJSON(json: any): V4CountiesGetCountyColumnsResponseDto; export declare function V4CountiesGetCountyColumnsResponseDtoToJSONTyped(value?: V4CountiesGetCountyColumnsResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4CountiesGetCountyColumnsResponseDto.d.ts.map