@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
34 lines • 1.44 kB
TypeScript
/**
* 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 { V4LeasingsCreateLeasingBodyDto } from './V4LeasingsCreateLeasingBodyDto';
/**
*
* @export
* @interface V4LeasingsUpdateLeasingBodyDto
*/
export interface V4LeasingsUpdateLeasingBodyDto {
/**
* The leasing data to update
* @type {V4LeasingsCreateLeasingBodyDto}
* @memberof V4LeasingsUpdateLeasingBodyDto
*/
leasing: V4LeasingsCreateLeasingBodyDto;
}
/**
* Check if a given object implements the V4LeasingsUpdateLeasingBodyDto interface.
*/
export declare function instanceOfV4LeasingsUpdateLeasingBodyDto(value: object): value is V4LeasingsUpdateLeasingBodyDto;
export declare function V4LeasingsUpdateLeasingBodyDtoFromJSON(json: any): V4LeasingsUpdateLeasingBodyDto;
export declare function V4LeasingsUpdateLeasingBodyDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4LeasingsUpdateLeasingBodyDto;
export declare function V4LeasingsUpdateLeasingBodyDtoToJSON(json: any): V4LeasingsUpdateLeasingBodyDto;
export declare function V4LeasingsUpdateLeasingBodyDtoToJSONTyped(value?: V4LeasingsUpdateLeasingBodyDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4LeasingsUpdateLeasingBodyDto.d.ts.map