fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
102 lines • 2.66 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 { APIStatus } from './APIStatus';
import type { VoteResponseUser } from './VoteResponseUser';
/**
*
* @export
* @interface CreateVote200Response
*/
export interface CreateVote200Response {
/**
*
* @type {APIStatus}
* @memberof CreateVote200Response
*/
status: APIStatus;
/**
*
* @type {string}
* @memberof CreateVote200Response
*/
voteId?: string;
/**
*
* @type {boolean}
* @memberof CreateVote200Response
*/
isVerified?: boolean;
/**
*
* @type {VoteResponseUser}
* @memberof CreateVote200Response
*/
user?: VoteResponseUser;
/**
*
* @type {string}
* @memberof CreateVote200Response
*/
editKey?: string;
/**
*
* @type {string}
* @memberof CreateVote200Response
*/
reason: string;
/**
*
* @type {string}
* @memberof CreateVote200Response
*/
code: string;
/**
*
* @type {string}
* @memberof CreateVote200Response
*/
secondaryCode?: string;
/**
*
* @type {number}
* @memberof CreateVote200Response
*/
bannedUntil?: number;
/**
*
* @type {number}
* @memberof CreateVote200Response
*/
maxCharacterLength?: number;
/**
*
* @type {string}
* @memberof CreateVote200Response
*/
translatedError?: string;
/**
*
* @type {CustomConfigParameters}
* @memberof CreateVote200Response
*/
customConfig?: CustomConfigParameters;
}
/**
* Check if a given object implements the CreateVote200Response interface.
*/
export declare function instanceOfCreateVote200Response(value: object): value is CreateVote200Response;
export declare function CreateVote200ResponseFromJSON(json: any): CreateVote200Response;
export declare function CreateVote200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateVote200Response;
export declare function CreateVote200ResponseToJSON(json: any): CreateVote200Response;
export declare function CreateVote200ResponseToJSONTyped(value?: CreateVote200Response | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=CreateVote200Response.d.ts.map