UNPKG

fastcomments-sdk

Version:

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

77 lines 2.09 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 SendInviteResponse */ export interface SendInviteResponse { /** * * @type {APIStatus} * @memberof SendInviteResponse */ status: APIStatus; /** * * @type {string} * @memberof SendInviteResponse */ reason: string; /** * * @type {string} * @memberof SendInviteResponse */ code: string; /** * * @type {string} * @memberof SendInviteResponse */ secondaryCode?: string; /** * * @type {number} * @memberof SendInviteResponse */ bannedUntil?: number; /** * * @type {number} * @memberof SendInviteResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof SendInviteResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof SendInviteResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the SendInviteResponse interface. */ export declare function instanceOfSendInviteResponse(value: object): value is SendInviteResponse; export declare function SendInviteResponseFromJSON(json: any): SendInviteResponse; export declare function SendInviteResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SendInviteResponse; export declare function SendInviteResponseToJSON(json: any): SendInviteResponse; export declare function SendInviteResponseToJSONTyped(value?: SendInviteResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SendInviteResponse.d.ts.map