UNPKG

@simplyhomes/sos-sdk

Version:

TypeScript SDK for Simply Homes SoS API v4

40 lines 2.24 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 V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDto */ export interface V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDto { /** * List of message subscriptions retrieved from the database * @type {Array<SoSMessageSubscriptionEntityBase>} * @memberof V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDto */ objects: Array<SoSMessageSubscriptionEntityBase>; /** * Total count of message subscriptions matching the query * @type {number} * @memberof V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDto */ count: number; } /** * Check if a given object implements the V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDto interface. */ export declare function instanceOfV4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDto(value: object): value is V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDto; export declare function V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDtoFromJSON(json: any): V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDto; export declare function V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDto; export declare function V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDtoToJSON(json: any): V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDto; export declare function V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDtoToJSONTyped(value?: V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDto | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=V4MessageSubscriptionsGetMessageSubscriptionsFilteredByResponseDto.d.ts.map