/** * 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 ApiV2LabelUnassignPostRequest */ export interface ApiV2LabelUnassignPostRequest { /** * A unique request identifier, e.g. a timestamp in milliseconds * @type {number} * @memberof ApiV2LabelUnassignPostRequest */ nonce: number; /** * Your public key * @type {string} * @memberof ApiV2LabelUnassignPostRequest */ appId: string; /** * App user ID * @type {string} * @memberof ApiV2LabelUnassignPostRequest */ appUserId: string; /** * Label ID * @type {string} * @memberof ApiV2LabelUnassignPostRequest */ labelId: string; } /** * Check if a given object implements the ApiV2LabelUnassignPostRequest interface. */ export declare function instanceOfApiV2LabelUnassignPostRequest(value: object): boolean; export declare function ApiV2LabelUnassignPostRequestFromJSON(json: any): ApiV2LabelUnassignPostRequest; export declare function ApiV2LabelUnassignPostRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2LabelUnassignPostRequest; export declare function ApiV2LabelUnassignPostRequestToJSON(value?: ApiV2LabelUnassignPostRequest | null): any; //# sourceMappingURL=ApiV2LabelUnassignPostRequest.d.ts.map