UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

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