fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
99 lines • 2.74 kB
TypeScript
/**
* 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 { APIComment } from './APIComment';
import type { APIStatus } from './APIStatus';
import type { UserSessionInfo } from './UserSessionInfo';
/**
*
* @export
* @interface SaveComment200Response
*/
export interface SaveComment200Response {
/**
*
* @type {APIStatus}
* @memberof SaveComment200Response
*/
status: APIStatus;
/**
*
* @type {APIComment}
* @memberof SaveComment200Response
*/
comment: APIComment;
/**
*
* @type {UserSessionInfo}
* @memberof SaveComment200Response
*/
user: UserSessionInfo | null;
/**
* Construct a type with a set of properties K of type T
* @type {{ [key: string]: object; }}
* @memberof SaveComment200Response
*/
moduleData?: {
[key: string]: object;
};
/**
*
* @type {string}
* @memberof SaveComment200Response
*/
reason: string;
/**
*
* @type {string}
* @memberof SaveComment200Response
*/
code: string;
/**
*
* @type {string}
* @memberof SaveComment200Response
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof SaveComment200Response
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof SaveComment200Response
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof SaveComment200Response
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof SaveComment200Response
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the SaveComment200Response interface.
*/
export declare function instanceOfSaveComment200Response(value: object): value is SaveComment200Response;
export declare function SaveComment200ResponseFromJSON(json: any): SaveComment200Response;
export declare function SaveComment200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SaveComment200Response;
export declare function SaveComment200ResponseToJSON(json: any): SaveComment200Response;
export declare function SaveComment200ResponseToJSONTyped(value?: SaveComment200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=SaveComment200Response.d.ts.map