UNPKG

fastcomments-sdk

Version:

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

89 lines 2.35 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 { APIStatus } from './APIStatus'; /** * * @export * @interface GetApiIds200Response */ export interface GetApiIds200Response { /** * * @type {Array<string>} * @memberof GetApiIds200Response */ ids: Array<string>; /** * * @type {boolean} * @memberof GetApiIds200Response */ hasMore: boolean; /** * * @type {APIStatus} * @memberof GetApiIds200Response */ status: APIStatus; /** * * @type {string} * @memberof GetApiIds200Response */ reason: string; /** * * @type {string} * @memberof GetApiIds200Response */ code: string; /** * * @type {string} * @memberof GetApiIds200Response */ secondaryCode?: string; /** * * @type {number} * @memberof GetApiIds200Response */ bannedUntil?: number; /** * * @type {number} * @memberof GetApiIds200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof GetApiIds200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof GetApiIds200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the GetApiIds200Response interface. */ export declare function instanceOfGetApiIds200Response(value: object): value is GetApiIds200Response; export declare function GetApiIds200ResponseFromJSON(json: any): GetApiIds200Response; export declare function GetApiIds200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetApiIds200Response; export declare function GetApiIds200ResponseToJSON(json: any): GetApiIds200Response; export declare function GetApiIds200ResponseToJSONTyped(value?: GetApiIds200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetApiIds200Response.d.ts.map