UNPKG

fastcomments-sdk

Version:

FastComments API Client - A SDK for interacting with the FastComments API

41 lines 1.4 kB
/** * fastcomments * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 0.0.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 { APITicket } from './APITicket'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetTicketsResponse */ export interface GetTicketsResponse { /** * * @type {APIStatus} * @memberof GetTicketsResponse */ status: APIStatus; /** * * @type {Array<APITicket>} * @memberof GetTicketsResponse */ tickets: Array<APITicket>; } /** * Check if a given object implements the GetTicketsResponse interface. */ export declare function instanceOfGetTicketsResponse(value: object): value is GetTicketsResponse; export declare function GetTicketsResponseFromJSON(json: any): GetTicketsResponse; export declare function GetTicketsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTicketsResponse; export declare function GetTicketsResponseToJSON(json: any): GetTicketsResponse; export declare function GetTicketsResponseToJSONTyped(value?: GetTicketsResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetTicketsResponse.d.ts.map