fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
89 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 { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetApiIdsResponse
*/
export interface GetApiIdsResponse {
/**
*
* @type {Array<string>}
* @memberof GetApiIdsResponse
*/
ids: Array<string>;
/**
*
* @type {boolean}
* @memberof GetApiIdsResponse
*/
hasMore: boolean;
/**
*
* @type {APIStatus}
* @memberof GetApiIdsResponse
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof GetApiIdsResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof GetApiIdsResponse
*/
code: string;
/**
*
* @type {string}
* @memberof GetApiIdsResponse
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetApiIdsResponse
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetApiIdsResponse
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetApiIdsResponse
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetApiIdsResponse
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetApiIdsResponse interface.
*/
export declare function instanceOfGetApiIdsResponse(value: object): value is GetApiIdsResponse;
export declare function GetApiIdsResponseFromJSON(json: any): GetApiIdsResponse;
export declare function GetApiIdsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetApiIdsResponse;
export declare function GetApiIdsResponseToJSON(json: any): GetApiIdsResponse;
export declare function GetApiIdsResponseToJSONTyped(value?: GetApiIdsResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetApiIdsResponse.d.ts.map