export interface CustomerRequestAction {
  /** Indicates whether the user can undertake the action (true) or not (false). */
  allowed?: boolean;
}
