UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

65 lines 3.08 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. */ /** * * @export * @interface V4MessageSubscriptionsDeleteMessageSubscriptionResponseDto */ export interface V4MessageSubscriptionsDeleteMessageSubscriptionResponseDto { /** * User ID of the deleted subscription * @type {string} * @memberof V4MessageSubscriptionsDeleteMessageSubscriptionResponseDto */ userId: string; /** * Property ID of the deleted subscription * @type {string} * @memberof V4MessageSubscriptionsDeleteMessageSubscriptionResponseDto */ propertyId: string; /** * Entity type of the deleted subscription * @type {string} * @memberof V4MessageSubscriptionsDeleteMessageSubscriptionResponseDto */ entityType: V4MessageSubscriptionsDeleteMessageSubscriptionResponseDtoEntityType; /** * Entity ID of the deleted subscription * @type {string} * @memberof V4MessageSubscriptionsDeleteMessageSubscriptionResponseDto */ entityId: string; } /** * @export * @enum {string} */ export declare enum V4MessageSubscriptionsDeleteMessageSubscriptionResponseDtoEntityType { SosMessagesEntityTypeProperty = "sos_messages|entity_type|property", SosMessagesEntityTypeTransaction = "sos_messages|entity_type|transaction", SosMessagesEntityTypeUnit = "sos_messages|entity_type|unit", SosMessagesEntityTypeInspection = "sos_messages|entity_type|inspection", SosMessagesEntityTypeRenovation = "sos_messages|entity_type|renovation", SosMessagesEntityTypeWorkOrder = "sos_messages|entity_type|work_order", SosMessagesEntityTypeRentalListing = "sos_messages|entity_type|rental_listing", SosMessagesEntityTypeLeasing = "sos_messages|entity_type|leasing" } /** * Check if a given object implements the V4MessageSubscriptionsDeleteMessageSubscriptionResponseDto interface. */ export declare function instanceOfV4MessageSubscriptionsDeleteMessageSubscriptionResponseDto(value: object): value is V4MessageSubscriptionsDeleteMessageSubscriptionResponseDto; export declare function V4MessageSubscriptionsDeleteMessageSubscriptionResponseDtoFromJSON(json: any): V4MessageSubscriptionsDeleteMessageSubscriptionResponseDto; export declare function V4MessageSubscriptionsDeleteMessageSubscriptionResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4MessageSubscriptionsDeleteMessageSubscriptionResponseDto; export declare function V4MessageSubscriptionsDeleteMessageSubscriptionResponseDtoToJSON(json: any): V4MessageSubscriptionsDeleteMessageSubscriptionResponseDto; export declare function V4MessageSubscriptionsDeleteMessageSubscriptionResponseDtoToJSONTyped(value?: V4MessageSubscriptionsDeleteMessageSubscriptionResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4MessageSubscriptionsDeleteMessageSubscriptionResponseDto.d.ts.map