fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
84 lines • 2.28 kB
TypeScript
/**
* 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 GetTicketsResponse1
*/
export interface GetTicketsResponse1 {
/**
*
* @type {APIStatus}
* @memberof GetTicketsResponse1
*/
status: APIStatus;
/**
*
* @type {Array<APITicket>}
* @memberof GetTicketsResponse1
*/
tickets: Array<APITicket>;
/**
*
* @type {string}
* @memberof GetTicketsResponse1
*/
reason: string;
/**
*
* @type {string}
* @memberof GetTicketsResponse1
*/
code: string;
/**
*
* @type {string}
* @memberof GetTicketsResponse1
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetTicketsResponse1
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetTicketsResponse1
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetTicketsResponse1
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetTicketsResponse1
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetTicketsResponse1 interface.
*/
export declare function instanceOfGetTicketsResponse1(value: object): value is GetTicketsResponse1;
export declare function GetTicketsResponse1FromJSON(json: any): GetTicketsResponse1;
export declare function GetTicketsResponse1FromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTicketsResponse1;
export declare function GetTicketsResponse1ToJSON(json: any): GetTicketsResponse1;
export declare function GetTicketsResponse1ToJSONTyped(value?: GetTicketsResponse1 | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetTicketsResponse1.d.ts.map