@simplyhomes/sos-sdk
Version:
TypeScript SDK for Simply Homes SoS API v4
40 lines • 2.21 kB
TypeScript
/**
* 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 { SoSAirtableCommentSubscriptionEntityBase } from './SoSAirtableCommentSubscriptionEntityBase';
/**
*
* @export
* @interface V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDto
*/
export interface V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDto {
/**
* List of subscriptions retrieved from the database
* @type {Array<SoSAirtableCommentSubscriptionEntityBase>}
* @memberof V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDto
*/
objects: Array<SoSAirtableCommentSubscriptionEntityBase>;
/**
* Total count of subscriptions matching the query
* @type {number}
* @memberof V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDto
*/
count: number;
}
/**
* Check if a given object implements the V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDto interface.
*/
export declare function instanceOfV4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDto(value: object): value is V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDto;
export declare function V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDtoFromJSON(json: any): V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDto;
export declare function V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDto;
export declare function V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDtoToJSON(json: any): V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDto;
export declare function V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDtoToJSONTyped(value?: V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDto | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=V4AirtableCommentSubscriptionsGetSubscriptionsInViewResponseDto.d.ts.map