UNPKG

@openzeppelin/relayer-sdk

Version:
44 lines (43 loc) 981 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 { NotificationType } from './notification-type'; /** * Response structure for notification API endpoints * @export * @interface NotificationResponse */ export interface NotificationResponse { /** * Signing key is hidden in responses for security * @type {boolean} * @memberof NotificationResponse */ 'has_signing_key': boolean; /** * * @type {string} * @memberof NotificationResponse */ 'id': string; /** * * @type {NotificationType} * @memberof NotificationResponse */ 'type': NotificationType; /** * * @type {string} * @memberof NotificationResponse */ 'url': string; }