import { BaseResponse } from './base-response';

export class CancelNotificationResponse extends BaseResponse {
  /** @description User facing text describing the cancellation process. May be left blank to present a default value */
  message?: string;
  /** @description A list of errors preventing this notification from being cancelled. If no errors are returned the void is considered successful. If  any errors are returned the void is considered failed. */
  errors?: string[];
}
