UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 2.18 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. */ import type { SoSMessageSubscriptionEntityBase } from './SoSMessageSubscriptionEntityBase'; /** * * @export * @interface V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDto */ export interface V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDto { /** * List of message subscriptions retrieved from the database * @type {Array<SoSMessageSubscriptionEntityBase>} * @memberof V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDto */ objects: Array<SoSMessageSubscriptionEntityBase>; /** * Total count of message subscriptions matching the query * @type {number} * @memberof V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDto */ count: number; } /** * Check if a given object implements the V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDto interface. */ export declare function instanceOfV4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDto(value: object): value is V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDto; export declare function V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDtoFromJSON(json: any): V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDto; export declare function V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDto; export declare function V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDtoToJSON(json: any): V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDto; export declare function V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDtoToJSONTyped(value?: V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4MessageSubscriptionsGetMessageSubscriptionsInViewResponseDto.d.ts.map