UNPKG

fastcomments-sdk

Version:

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

84 lines 2.32 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 { CustomConfigParameters } from './CustomConfigParameters'; import type { APITicket } from './APITicket'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface GetTickets200Response */ export interface GetTickets200Response { /** * * @type {APIStatus} * @memberof GetTickets200Response */ status: APIStatus; /** * * @type {Array<APITicket>} * @memberof GetTickets200Response */ tickets: Array<APITicket>; /** * * @type {string} * @memberof GetTickets200Response */ reason: string; /** * * @type {string} * @memberof GetTickets200Response */ code: string; /** * * @type {string} * @memberof GetTickets200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetTickets200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetTickets200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetTickets200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetTickets200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetTickets200Response interface. */ export declare function instanceOfGetTickets200Response(value: object): value is GetTickets200Response; export declare function GetTickets200ResponseFromJSON(json: any): GetTickets200Response; export declare function GetTickets200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTickets200Response; export declare function GetTickets200ResponseToJSON(json: any): GetTickets200Response; export declare function GetTickets200ResponseToJSONTyped(value?: GetTickets200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetTickets200Response.d.ts.map