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

export class CreateNotificationResponse extends BaseResponse {
  /** @description The id of the sucessfully created notification*/
  notification_id!: string;
  billing_line_items?: BillingLineItem[];
}
