/** * 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 ApiV2AomGetPostRequest */ export interface ApiV2AomGetPostRequest { /** * Unique request identifier, e.g. a timestamp in milliseconds * @type {number} * @memberof ApiV2AomGetPostRequest */ nonce: number; /** * Your public key * @type {string} * @memberof ApiV2AomGetPostRequest */ appId: string; /** * Order maker ID. * @type {string} * @memberof ApiV2AomGetPostRequest */ aomId: string; } /** * Check if a given object implements the ApiV2AomGetPostRequest interface. */ export declare function instanceOfApiV2AomGetPostRequest(value: object): boolean; export declare function ApiV2AomGetPostRequestFromJSON(json: any): ApiV2AomGetPostRequest; export declare function ApiV2AomGetPostRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiV2AomGetPostRequest; export declare function ApiV2AomGetPostRequestToJSON(value?: ApiV2AomGetPostRequest | null): any; //# sourceMappingURL=ApiV2AomGetPostRequest.d.ts.map