/** * 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. */ import type { ApiV2DistributionGroupListPost200ResponseOneOfListInner } from './ApiV2DistributionGroupListPost200ResponseOneOfListInner'; /** * * @export * @interface ApiV2DistributionGroupListPost200ResponseOneOf */ export interface ApiV2DistributionGroupListPost200ResponseOneOf { /** * * @type {string} * @memberof ApiV2DistributionGroupListPost200ResponseOneOf */ result: ApiV2DistributionGroupListPost200ResponseOneOfResultEnum; /** * * @type {Array} * @memberof ApiV2DistributionGroupListPost200ResponseOneOf */ list: Array; } /** * @export */ export declare const ApiV2DistributionGroupListPost200ResponseOneOfResultEnum: { readonly Ok: "ok"; }; export type ApiV2DistributionGroupListPost200ResponseOneOfResultEnum = typeof ApiV2DistributionGroupListPost200ResponseOneOfResultEnum[keyof typeof ApiV2DistributionGroupListPost200ResponseOneOfResultEnum]; /** * Check if a given object implements the ApiV2DistributionGroupListPost200ResponseOneOf interface. */ export declare function instanceOfApiV2DistributionGroupListPost200ResponseOneOf(value: object): boolean; export declare function ApiV2DistributionGroupListPost200ResponseOneOfFromJSON(json: any): ApiV2DistributionGroupListPost200ResponseOneOf; export declare function ApiV2DistributionGroupListPost200ResponseOneOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2DistributionGroupListPost200ResponseOneOf; export declare function ApiV2DistributionGroupListPost200ResponseOneOfToJSON(value?: ApiV2DistributionGroupListPost200ResponseOneOf | null): any; //# sourceMappingURL=ApiV2DistributionGroupListPost200ResponseOneOf.d.ts.map