UNPKG

fastcomments-sdk

Version:

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

51 lines 1.62 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. */ /** * * @export * @interface PatchDomainConfigResponse */ export interface PatchDomainConfigResponse { /** * * @type {any} * @memberof PatchDomainConfigResponse */ _configuration: any | null; /** * * @type {any} * @memberof PatchDomainConfigResponse */ status: any | null; /** * * @type {string} * @memberof PatchDomainConfigResponse */ reason: string; /** * * @type {string} * @memberof PatchDomainConfigResponse */ code: string; } /** * Check if a given object implements the PatchDomainConfigResponse interface. */ export declare function instanceOfPatchDomainConfigResponse(value: object): value is PatchDomainConfigResponse; export declare function PatchDomainConfigResponseFromJSON(json: any): PatchDomainConfigResponse; export declare function PatchDomainConfigResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchDomainConfigResponse; export declare function PatchDomainConfigResponseToJSON(json: any): PatchDomainConfigResponse; export declare function PatchDomainConfigResponseToJSONTyped(value?: PatchDomainConfigResponse | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchDomainConfigResponse.d.ts.map