@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
39 lines • 1.76 kB
TypeScript
/**
* 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 V4InspectionsGetInspectionsInViewResponseDto
*/
export interface V4InspectionsGetInspectionsInViewResponseDto {
/**
* List of inspections retrieved from the database for the specific view
* @type {Array<object>}
* @memberof V4InspectionsGetInspectionsInViewResponseDto
*/
objects: Array<object>;
/**
* Total count of inspections matching the query in the view
* @type {number}
* @memberof V4InspectionsGetInspectionsInViewResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4InspectionsGetInspectionsInViewResponseDto interface.
*/
export declare function instanceOfV4InspectionsGetInspectionsInViewResponseDto(value: object): value is V4InspectionsGetInspectionsInViewResponseDto;
export declare function V4InspectionsGetInspectionsInViewResponseDtoFromJSON(json: any): V4InspectionsGetInspectionsInViewResponseDto;
export declare function V4InspectionsGetInspectionsInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4InspectionsGetInspectionsInViewResponseDto;
export declare function V4InspectionsGetInspectionsInViewResponseDtoToJSON(json: any): V4InspectionsGetInspectionsInViewResponseDto;
export declare function V4InspectionsGetInspectionsInViewResponseDtoToJSONTyped(value?: V4InspectionsGetInspectionsInViewResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4InspectionsGetInspectionsInViewResponseDto.d.ts.map