UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 2.07 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 { SoSRelInspectionUserEntityBase } from './SoSRelInspectionUserEntityBase'; /** * * @export * @interface V4InspectionUserRelationsGetRelInspectionUserResponseDto */ export interface V4InspectionUserRelationsGetRelInspectionUserResponseDto { /** * List of rel-inspection-users retrieved from the database * @type {Array<SoSRelInspectionUserEntityBase>} * @memberof V4InspectionUserRelationsGetRelInspectionUserResponseDto */ objects: Array<SoSRelInspectionUserEntityBase>; /** * Total count of rel-inspection-users matching the query * @type {number} * @memberof V4InspectionUserRelationsGetRelInspectionUserResponseDto */ count: number; } /** * Check if a given object implements the V4InspectionUserRelationsGetRelInspectionUserResponseDto interface. */ export declare function instanceOfV4InspectionUserRelationsGetRelInspectionUserResponseDto(value: object): value is V4InspectionUserRelationsGetRelInspectionUserResponseDto; export declare function V4InspectionUserRelationsGetRelInspectionUserResponseDtoFromJSON(json: any): V4InspectionUserRelationsGetRelInspectionUserResponseDto; export declare function V4InspectionUserRelationsGetRelInspectionUserResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4InspectionUserRelationsGetRelInspectionUserResponseDto; export declare function V4InspectionUserRelationsGetRelInspectionUserResponseDtoToJSON(json: any): V4InspectionUserRelationsGetRelInspectionUserResponseDto; export declare function V4InspectionUserRelationsGetRelInspectionUserResponseDtoToJSONTyped(value?: V4InspectionUserRelationsGetRelInspectionUserResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4InspectionUserRelationsGetRelInspectionUserResponseDto.d.ts.map