/** Details of a notification scheme. */
export interface UpdateNotificationSchemeDetails {
  /** The description of the notification scheme. */
  description?: string;
  /** The name of the notification scheme. Must be unique. */
  name?: string;
}
