fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
84 lines • 2.38 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 { TenantBadge } from './TenantBadge';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetManualBadgesResponse
*/
export interface GetManualBadgesResponse {
/**
*
* @type {Array<TenantBadge>}
* @memberof GetManualBadgesResponse
*/
badges: Array<TenantBadge>;
/**
*
* @type {APIStatus}
* @memberof GetManualBadgesResponse
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof GetManualBadgesResponse
*/
reason: string;
/**
*
* @type {string}
* @memberof GetManualBadgesResponse
*/
code: string;
/**
*
* @type {string}
* @memberof GetManualBadgesResponse
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof GetManualBadgesResponse
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof GetManualBadgesResponse
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof GetManualBadgesResponse
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof GetManualBadgesResponse
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the GetManualBadgesResponse interface.
*/
export declare function instanceOfGetManualBadgesResponse(value: object): value is GetManualBadgesResponse;
export declare function GetManualBadgesResponseFromJSON(json: any): GetManualBadgesResponse;
export declare function GetManualBadgesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetManualBadgesResponse;
export declare function GetManualBadgesResponseToJSON(json: any): GetManualBadgesResponse;
export declare function GetManualBadgesResponseToJSONTyped(value?: GetManualBadgesResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetManualBadgesResponse.d.ts.map