UNPKG

fastcomments-sdk

Version:

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

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