UNPKG

@openzeppelin/relayer-sdk

Version:
45 lines (44 loc) 1.11 kB
/** * OpenZeppelin Relayer API * OpenZeppelin Relayer API * * The version of the OpenAPI document: 1.0.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 { ApiResponseNotificationResponseData } from './api-response-notification-response-data'; import type { PaginationMeta } from './pagination-meta'; /** * * @export * @interface ApiResponseNotificationResponse */ export interface ApiResponseNotificationResponse { /** * * @type {ApiResponseNotificationResponseData} * @memberof ApiResponseNotificationResponse */ 'data'?: ApiResponseNotificationResponseData; /** * * @type {string} * @memberof ApiResponseNotificationResponse */ 'error'?: string; /** * * @type {PaginationMeta} * @memberof ApiResponseNotificationResponse */ 'pagination'?: PaginationMeta; /** * * @type {boolean} * @memberof ApiResponseNotificationResponse */ 'success': boolean; }