fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
53 lines • 1.78 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 { PublicVote } from './PublicVote';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetVotesForUserResponse
*/
export interface GetVotesForUserResponse {
/**
*
* @type {APIStatus}
* @memberof GetVotesForUserResponse
*/
status: APIStatus;
/**
*
* @type {Array<PublicVote>}
* @memberof GetVotesForUserResponse
*/
appliedAuthorizedVotes: Array<PublicVote>;
/**
*
* @type {Array<PublicVote>}
* @memberof GetVotesForUserResponse
*/
appliedAnonymousVotes: Array<PublicVote>;
/**
*
* @type {Array<PublicVote>}
* @memberof GetVotesForUserResponse
*/
pendingVotes: Array<PublicVote>;
}
/**
* Check if a given object implements the GetVotesForUserResponse interface.
*/
export declare function instanceOfGetVotesForUserResponse(value: object): value is GetVotesForUserResponse;
export declare function GetVotesForUserResponseFromJSON(json: any): GetVotesForUserResponse;
export declare function GetVotesForUserResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetVotesForUserResponse;
export declare function GetVotesForUserResponseToJSON(json: any): GetVotesForUserResponse;
export declare function GetVotesForUserResponseToJSONTyped(value?: GetVotesForUserResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetVotesForUserResponse.d.ts.map