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 SendLoginLinkResponse */ export interface SendLoginLinkResponse { /** * * @type {APIStatus} * @memberof SendLoginLinkResponse */ status: APIStatus; /** * * @type {string} * @memberof SendLoginLinkResponse */ reason: string; /** * * @type {string} * @memberof SendLoginLinkResponse */ code: string; /** * * @type {string} * @memberof SendLoginLinkResponse */ secondaryCode?: string; /** * * @type {number} * @memberof SendLoginLinkResponse */ bannedUntil?: number; /** * * @type {number} * @memberof SendLoginLinkResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof SendLoginLinkResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof SendLoginLinkResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the SendLoginLinkResponse interface. */ export declare function instanceOfSendLoginLinkResponse(value: object): value is SendLoginLinkResponse; export declare function SendLoginLinkResponseFromJSON(json: any): SendLoginLinkResponse; export declare function SendLoginLinkResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SendLoginLinkResponse; export declare function SendLoginLinkResponseToJSON(json: any): SendLoginLinkResponse; export declare function SendLoginLinkResponseToJSONTyped(value?: SendLoginLinkResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SendLoginLinkResponse.d.ts.map