UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 2.06 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 { SoSRelMarketOwnerEntityBase } from './SoSRelMarketOwnerEntityBase'; /** * * @export * @interface V4MarketOwnerRelationsGetRelationMarketOwnersResponseDto */ export interface V4MarketOwnerRelationsGetRelationMarketOwnersResponseDto { /** * List of relation-market-owners retrieved from the database * @type {Array<SoSRelMarketOwnerEntityBase>} * @memberof V4MarketOwnerRelationsGetRelationMarketOwnersResponseDto */ objects: Array<SoSRelMarketOwnerEntityBase>; /** * Total count of relation-market-owners matching the query * @type {number} * @memberof V4MarketOwnerRelationsGetRelationMarketOwnersResponseDto */ count: number; } /** * Check if a given object implements the V4MarketOwnerRelationsGetRelationMarketOwnersResponseDto interface. */ export declare function instanceOfV4MarketOwnerRelationsGetRelationMarketOwnersResponseDto(value: object): value is V4MarketOwnerRelationsGetRelationMarketOwnersResponseDto; export declare function V4MarketOwnerRelationsGetRelationMarketOwnersResponseDtoFromJSON(json: any): V4MarketOwnerRelationsGetRelationMarketOwnersResponseDto; export declare function V4MarketOwnerRelationsGetRelationMarketOwnersResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4MarketOwnerRelationsGetRelationMarketOwnersResponseDto; export declare function V4MarketOwnerRelationsGetRelationMarketOwnersResponseDtoToJSON(json: any): V4MarketOwnerRelationsGetRelationMarketOwnersResponseDto; export declare function V4MarketOwnerRelationsGetRelationMarketOwnersResponseDtoToJSONTyped(value?: V4MarketOwnerRelationsGetRelationMarketOwnersResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4MarketOwnerRelationsGetRelationMarketOwnersResponseDto.d.ts.map