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 V4MessageSubscriptionsUpdateMessageSubscriptionResponseDto */ export interface V4MessageSubscriptionsUpdateMessageSubscriptionResponseDto { /** * User ID of the updated subscription * @type {string} * @memberof V4MessageSubscriptionsUpdateMessageSubscriptionResponseDto */ userId: string; /** * Property ID of the updated subscription * @type {string} * @memberof V4MessageSubscriptionsUpdateMessageSubscriptionResponseDto */ propertyId: string; /** * Entity type of the updated subscription * @type {string} * @memberof V4MessageSubscriptionsUpdateMessageSubscriptionResponseDto */ entityType: V4MessageSubscriptionsUpdateMessageSubscriptionResponseDtoEntityType; /** * Entity ID of the updated subscription * @type {string} * @memberof V4MessageSubscriptionsUpdateMessageSubscriptionResponseDto */ entityId: string; } /** * @export * @enum {string} */ export declare enum V4MessageSubscriptionsUpdateMessageSubscriptionResponseDtoEntityType { 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 V4MessageSubscriptionsUpdateMessageSubscriptionResponseDto interface. */ export declare function instanceOfV4MessageSubscriptionsUpdateMessageSubscriptionResponseDto(value: object): value is V4MessageSubscriptionsUpdateMessageSubscriptionResponseDto; export declare function V4MessageSubscriptionsUpdateMessageSubscriptionResponseDtoFromJSON(json: any): V4MessageSubscriptionsUpdateMessageSubscriptionResponseDto; export declare function V4MessageSubscriptionsUpdateMessageSubscriptionResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4MessageSubscriptionsUpdateMessageSubscriptionResponseDto; export declare function V4MessageSubscriptionsUpdateMessageSubscriptionResponseDtoToJSON(json: any): V4MessageSubscriptionsUpdateMessageSubscriptionResponseDto; export declare function V4MessageSubscriptionsUpdateMessageSubscriptionResponseDtoToJSONTyped(value?: V4MessageSubscriptionsUpdateMessageSubscriptionResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4MessageSubscriptionsUpdateMessageSubscriptionResponseDto.d.ts.map