UNPKG

fastcomments-sdk

Version:

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

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