UNPKG

@openzeppelin/relayer-sdk

Version:
56 lines (55 loc) 1.13 kB
/** * 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. */ /** * Vault signer configuration for API requests * @export * @interface VaultSignerRequestConfig */ export interface VaultSignerRequestConfig { [key: string]: any; /** * * @type {string} * @memberof VaultSignerRequestConfig */ 'address': string; /** * * @type {string} * @memberof VaultSignerRequestConfig */ 'key_name': string; /** * * @type {string} * @memberof VaultSignerRequestConfig */ 'mount_point'?: string; /** * * @type {string} * @memberof VaultSignerRequestConfig */ 'namespace'?: string; /** * * @type {string} * @memberof VaultSignerRequestConfig */ 'role_id': string; /** * * @type {string} * @memberof VaultSignerRequestConfig */ 'secret_id': string; }