UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 2.21 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 { SoSRelRentalListingUserEntityBase } from './SoSRelRentalListingUserEntityBase'; /** * * @export * @interface V4RentalListingUserRelationsGetRelRentalListingUsersResponseDto */ export interface V4RentalListingUserRelationsGetRelRentalListingUsersResponseDto { /** * List of rental listing-user relations retrieved from the database * @type {Array<SoSRelRentalListingUserEntityBase>} * @memberof V4RentalListingUserRelationsGetRelRentalListingUsersResponseDto */ objects: Array<SoSRelRentalListingUserEntityBase>; /** * Total count of rental listing-user relations matching the query * @type {number} * @memberof V4RentalListingUserRelationsGetRelRentalListingUsersResponseDto */ count: number; } /** * Check if a given object implements the V4RentalListingUserRelationsGetRelRentalListingUsersResponseDto interface. */ export declare function instanceOfV4RentalListingUserRelationsGetRelRentalListingUsersResponseDto(value: object): value is V4RentalListingUserRelationsGetRelRentalListingUsersResponseDto; export declare function V4RentalListingUserRelationsGetRelRentalListingUsersResponseDtoFromJSON(json: any): V4RentalListingUserRelationsGetRelRentalListingUsersResponseDto; export declare function V4RentalListingUserRelationsGetRelRentalListingUsersResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4RentalListingUserRelationsGetRelRentalListingUsersResponseDto; export declare function V4RentalListingUserRelationsGetRelRentalListingUsersResponseDtoToJSON(json: any): V4RentalListingUserRelationsGetRelRentalListingUsersResponseDto; export declare function V4RentalListingUserRelationsGetRelRentalListingUsersResponseDtoToJSONTyped(value?: V4RentalListingUserRelationsGetRelRentalListingUsersResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4RentalListingUserRelationsGetRelRentalListingUsersResponseDto.d.ts.map