/** * 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. */ /** * * @export * @interface ApiV2LabelUserListPost200ResponseOneOf */ export interface ApiV2LabelUserListPost200ResponseOneOf { /** * * @type {string} * @memberof ApiV2LabelUserListPost200ResponseOneOf */ result: ApiV2LabelUserListPost200ResponseOneOfResultEnum; /** * * @type {Array} * @memberof ApiV2LabelUserListPost200ResponseOneOf */ labels: Array; } /** * @export */ export declare const ApiV2LabelUserListPost200ResponseOneOfResultEnum: { readonly Ok: "ok"; }; export type ApiV2LabelUserListPost200ResponseOneOfResultEnum = typeof ApiV2LabelUserListPost200ResponseOneOfResultEnum[keyof typeof ApiV2LabelUserListPost200ResponseOneOfResultEnum]; /** * Check if a given object implements the ApiV2LabelUserListPost200ResponseOneOf interface. */ export declare function instanceOfApiV2LabelUserListPost200ResponseOneOf(value: object): boolean; export declare function ApiV2LabelUserListPost200ResponseOneOfFromJSON(json: any): ApiV2LabelUserListPost200ResponseOneOf; export declare function ApiV2LabelUserListPost200ResponseOneOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2LabelUserListPost200ResponseOneOf; export declare function ApiV2LabelUserListPost200ResponseOneOfToJSON(value?: ApiV2LabelUserListPost200ResponseOneOf | null): any; //# sourceMappingURL=ApiV2LabelUserListPost200ResponseOneOf.d.ts.map