UNPKG

@openzeppelin/relayer-sdk

Version:
51 lines (50 loc) 984 B
/** * OpenZeppelin Relayer API * OpenZeppelin Relayer API * * The version of the OpenAPI document: 1.3.0 * * * 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 { AssetSpec } from './asset-spec'; /** * * @export * @interface OperationSpecOneOf */ export interface OperationSpecOneOf { /** * * @type {number} * @memberof OperationSpecOneOf */ 'amount': number; /** * * @type {AssetSpec} * @memberof OperationSpecOneOf */ 'asset': AssetSpec; /** * * @type {string} * @memberof OperationSpecOneOf */ 'destination': string; /** * * @type {string} * @memberof OperationSpecOneOf */ 'type': OperationSpecOneOfTypeEnum; } /** * @export * @enum {string} */ export declare enum OperationSpecOneOfTypeEnum { PAYMENT = "payment" }