/** * Kanga Exchange API * API documentation generated from Kanga Exchange source code. * * The version of the OpenAPI document: 1.0.0 * Contact: support@kanga.exchange * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Insufficient permission to assign a label * @export * @interface ApiV2LabelAssignPost200ResponseOneOf */ export interface ApiV2LabelAssignPost200ResponseOneOf { /** * * @type {string} * @memberof ApiV2LabelAssignPost200ResponseOneOf */ result: ApiV2LabelAssignPost200ResponseOneOfResultEnum; /** * * @type {number} * @memberof ApiV2LabelAssignPost200ResponseOneOf */ code: ApiV2LabelAssignPost200ResponseOneOfCodeEnum; } /** * @export */ export declare const ApiV2LabelAssignPost200ResponseOneOfResultEnum: { readonly Fail: "fail"; }; export type ApiV2LabelAssignPost200ResponseOneOfResultEnum = typeof ApiV2LabelAssignPost200ResponseOneOfResultEnum[keyof typeof ApiV2LabelAssignPost200ResponseOneOfResultEnum]; /** * @export */ export declare const ApiV2LabelAssignPost200ResponseOneOfCodeEnum: { readonly NUMBER_9000: 9000; }; export type ApiV2LabelAssignPost200ResponseOneOfCodeEnum = typeof ApiV2LabelAssignPost200ResponseOneOfCodeEnum[keyof typeof ApiV2LabelAssignPost200ResponseOneOfCodeEnum]; /** * Check if a given object implements the ApiV2LabelAssignPost200ResponseOneOf interface. */ export declare function instanceOfApiV2LabelAssignPost200ResponseOneOf(value: object): boolean; export declare function ApiV2LabelAssignPost200ResponseOneOfFromJSON(json: any): ApiV2LabelAssignPost200ResponseOneOf; export declare function ApiV2LabelAssignPost200ResponseOneOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2LabelAssignPost200ResponseOneOf; export declare function ApiV2LabelAssignPost200ResponseOneOfToJSON(value?: ApiV2LabelAssignPost200ResponseOneOf | null): any; //# sourceMappingURL=ApiV2LabelAssignPost200ResponseOneOf.d.ts.map