@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
34 lines • 1.6 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 { V4NotificationsUpdateNotificationBody } from './V4NotificationsUpdateNotificationBody';
/**
*
* @export
* @interface V4NotificationsUpdateNotificationBodyDto
*/
export interface V4NotificationsUpdateNotificationBodyDto {
/**
*
* @type {V4NotificationsUpdateNotificationBody}
* @memberof V4NotificationsUpdateNotificationBodyDto
*/
notification: V4NotificationsUpdateNotificationBody;
}
/**
* Check if a given object implements the V4NotificationsUpdateNotificationBodyDto interface.
*/
export declare function instanceOfV4NotificationsUpdateNotificationBodyDto(value: object): value is V4NotificationsUpdateNotificationBodyDto;
export declare function V4NotificationsUpdateNotificationBodyDtoFromJSON(json: any): V4NotificationsUpdateNotificationBodyDto;
export declare function V4NotificationsUpdateNotificationBodyDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4NotificationsUpdateNotificationBodyDto;
export declare function V4NotificationsUpdateNotificationBodyDtoToJSON(json: any): V4NotificationsUpdateNotificationBodyDto;
export declare function V4NotificationsUpdateNotificationBodyDtoToJSONTyped(value?: V4NotificationsUpdateNotificationBodyDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4NotificationsUpdateNotificationBodyDto.d.ts.map