fastcomments-sdk
Version:
FastComments API Client - A SDK for interacting with the FastComments API
41 lines • 1.58 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 { TenantBadge } from './TenantBadge';
import type { APIStatus } from './APIStatus';
/**
*
* @export
* @interface GetTenantManualBadgesResponse
*/
export interface GetTenantManualBadgesResponse {
/**
*
* @type {Array<TenantBadge>}
* @memberof GetTenantManualBadgesResponse
*/
badges: Array<TenantBadge>;
/**
*
* @type {APIStatus}
* @memberof GetTenantManualBadgesResponse
*/
status: APIStatus;
}
/**
* Check if a given object implements the GetTenantManualBadgesResponse interface.
*/
export declare function instanceOfGetTenantManualBadgesResponse(value: object): value is GetTenantManualBadgesResponse;
export declare function GetTenantManualBadgesResponseFromJSON(json: any): GetTenantManualBadgesResponse;
export declare function GetTenantManualBadgesResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantManualBadgesResponse;
export declare function GetTenantManualBadgesResponseToJSON(json: any): GetTenantManualBadgesResponse;
export declare function GetTenantManualBadgesResponseToJSONTyped(value?: GetTenantManualBadgesResponse | null, ignoreDiscriminator?: boolean): any;
//# sourceMappingURL=GetTenantManualBadgesResponse.d.ts.map