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