UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

39 lines 1.63 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. */ /** * * @export * @interface V4InspectionsGetInspectionsResponseDto */ export interface V4InspectionsGetInspectionsResponseDto { /** * List of inspections retrieved from the database * @type {Array<object>} * @memberof V4InspectionsGetInspectionsResponseDto */ objects: Array<object>; /** * Total count of inspections matching the query * @type {number} * @memberof V4InspectionsGetInspectionsResponseDto */ count: number; } /** * Check if a given object implements the V4InspectionsGetInspectionsResponseDto interface. */ export declare function instanceOfV4InspectionsGetInspectionsResponseDto(value: object): value is V4InspectionsGetInspectionsResponseDto; export declare function V4InspectionsGetInspectionsResponseDtoFromJSON(json: any): V4InspectionsGetInspectionsResponseDto; export declare function V4InspectionsGetInspectionsResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4InspectionsGetInspectionsResponseDto; export declare function V4InspectionsGetInspectionsResponseDtoToJSON(json: any): V4InspectionsGetInspectionsResponseDto; export declare function V4InspectionsGetInspectionsResponseDtoToJSONTyped(value?: V4InspectionsGetInspectionsResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4InspectionsGetInspectionsResponseDto.d.ts.map