UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

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