UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

65 lines 3.04 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 V4MessageSubscriptionsCreateMessageSubscriptionResponseDto */ export interface V4MessageSubscriptionsCreateMessageSubscriptionResponseDto { /** * User ID of the subscription * @type {string} * @memberof V4MessageSubscriptionsCreateMessageSubscriptionResponseDto */ userId: string; /** * Property ID of the subscription * @type {string} * @memberof V4MessageSubscriptionsCreateMessageSubscriptionResponseDto */ propertyId: string; /** * Entity type of the subscription * @type {string} * @memberof V4MessageSubscriptionsCreateMessageSubscriptionResponseDto */ entityType: V4MessageSubscriptionsCreateMessageSubscriptionResponseDtoEntityType; /** * Entity ID of the subscription * @type {string} * @memberof V4MessageSubscriptionsCreateMessageSubscriptionResponseDto */ entityId: string; } /** * @export * @enum {string} */ export declare enum V4MessageSubscriptionsCreateMessageSubscriptionResponseDtoEntityType { 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 V4MessageSubscriptionsCreateMessageSubscriptionResponseDto interface. */ export declare function instanceOfV4MessageSubscriptionsCreateMessageSubscriptionResponseDto(value: object): value is V4MessageSubscriptionsCreateMessageSubscriptionResponseDto; export declare function V4MessageSubscriptionsCreateMessageSubscriptionResponseDtoFromJSON(json: any): V4MessageSubscriptionsCreateMessageSubscriptionResponseDto; export declare function V4MessageSubscriptionsCreateMessageSubscriptionResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4MessageSubscriptionsCreateMessageSubscriptionResponseDto; export declare function V4MessageSubscriptionsCreateMessageSubscriptionResponseDtoToJSON(json: any): V4MessageSubscriptionsCreateMessageSubscriptionResponseDto; export declare function V4MessageSubscriptionsCreateMessageSubscriptionResponseDtoToJSONTyped(value?: V4MessageSubscriptionsCreateMessageSubscriptionResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4MessageSubscriptionsCreateMessageSubscriptionResponseDto.d.ts.map