UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

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