UNPKG

fastcomments-sdk

Version:

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

84 lines 2.37 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 { TenantHashTag } from './TenantHashTag'; import type { APIStatus } from './APIStatus'; /** * * @export * @interface PatchHashTag200Response */ export interface PatchHashTag200Response { /** * * @type {APIStatus} * @memberof PatchHashTag200Response */ status: APIStatus; /** * * @type {TenantHashTag} * @memberof PatchHashTag200Response */ hashTag: TenantHashTag; /** * * @type {string} * @memberof PatchHashTag200Response */ reason: string; /** * * @type {string} * @memberof PatchHashTag200Response */ code: string; /** * * @type {string} * @memberof PatchHashTag200Response */ secondaryCode?: string; /** * * @type {number} * @memberof PatchHashTag200Response */ bannedUntil?: number; /** * * @type {number} * @memberof PatchHashTag200Response */ maxCharacterLength?: number; /** * * @type {string} * @memberof PatchHashTag200Response */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PatchHashTag200Response */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PatchHashTag200Response interface. */ export declare function instanceOfPatchHashTag200Response(value: object): value is PatchHashTag200Response; export declare function PatchHashTag200ResponseFromJSON(json: any): PatchHashTag200Response; export declare function PatchHashTag200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchHashTag200Response; export declare function PatchHashTag200ResponseToJSON(json: any): PatchHashTag200Response; export declare function PatchHashTag200ResponseToJSONTyped(value?: PatchHashTag200Response | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchHashTag200Response.d.ts.map