UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 1.68 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 { SoSOptionEntityBase } from './SoSOptionEntityBase'; /** * * @export * @interface V4OptionsGetOptionsInViewResponseDto */ export interface V4OptionsGetOptionsInViewResponseDto { /** * List of options retrieved from the database * @type {Array<SoSOptionEntityBase>} * @memberof V4OptionsGetOptionsInViewResponseDto */ objects: Array<SoSOptionEntityBase>; /** * Total count of options matching the query * @type {number} * @memberof V4OptionsGetOptionsInViewResponseDto */ count: number; } /** * Check if a given object implements the V4OptionsGetOptionsInViewResponseDto interface. */ export declare function instanceOfV4OptionsGetOptionsInViewResponseDto(value: object): value is V4OptionsGetOptionsInViewResponseDto; export declare function V4OptionsGetOptionsInViewResponseDtoFromJSON(json: any): V4OptionsGetOptionsInViewResponseDto; export declare function V4OptionsGetOptionsInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4OptionsGetOptionsInViewResponseDto; export declare function V4OptionsGetOptionsInViewResponseDtoToJSON(json: any): V4OptionsGetOptionsInViewResponseDto; export declare function V4OptionsGetOptionsInViewResponseDtoToJSONTyped(value?: V4OptionsGetOptionsInViewResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4OptionsGetOptionsInViewResponseDto.d.ts.map