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