UNPKG

fastcomments-sdk

Version:

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

84 lines 2.3 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 PatchHashTagResponse */ export interface PatchHashTagResponse { /** * * @type {APIStatus} * @memberof PatchHashTagResponse */ status: APIStatus; /** * * @type {TenantHashTag} * @memberof PatchHashTagResponse */ hashTag: TenantHashTag; /** * * @type {string} * @memberof PatchHashTagResponse */ reason: string; /** * * @type {string} * @memberof PatchHashTagResponse */ code: string; /** * * @type {string} * @memberof PatchHashTagResponse */ secondaryCode?: string; /** * * @type {number} * @memberof PatchHashTagResponse */ bannedUntil?: number; /** * * @type {number} * @memberof PatchHashTagResponse */ maxCharacterLength?: number; /** * * @type {string} * @memberof PatchHashTagResponse */ translatedError?: string; /** * * @type {CustomConfigParameters} * @memberof PatchHashTagResponse */ customConfig?: CustomConfigParameters; } /** * Check if a given object implements the PatchHashTagResponse interface. */ export declare function instanceOfPatchHashTagResponse(value: object): value is PatchHashTagResponse; export declare function PatchHashTagResponseFromJSON(json: any): PatchHashTagResponse; export declare function PatchHashTagResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchHashTagResponse; export declare function PatchHashTagResponseToJSON(json: any): PatchHashTagResponse; export declare function PatchHashTagResponseToJSONTyped(value?: PatchHashTagResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchHashTagResponse.d.ts.map