UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

34 lines 1.32 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 { V4ViewsViewDto } from './V4ViewsViewDto'; /** * * @export * @interface V4ViewsGetViewResponseDto */ export interface V4ViewsGetViewResponseDto { /** * The view object containing the details of the view * @type {V4ViewsViewDto} * @memberof V4ViewsGetViewResponseDto */ view: V4ViewsViewDto; } /** * Check if a given object implements the V4ViewsGetViewResponseDto interface. */ export declare function instanceOfV4ViewsGetViewResponseDto(value: object): value is V4ViewsGetViewResponseDto; export declare function V4ViewsGetViewResponseDtoFromJSON(json: any): V4ViewsGetViewResponseDto; export declare function V4ViewsGetViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4ViewsGetViewResponseDto; export declare function V4ViewsGetViewResponseDtoToJSON(json: any): V4ViewsGetViewResponseDto; export declare function V4ViewsGetViewResponseDtoToJSONTyped(value?: V4ViewsGetViewResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4ViewsGetViewResponseDto.d.ts.map