BackupScheduleView typedef

BackupScheduleView = ({PlanType? planType, String projectId, BackupSchedule? schedule})

The backup schedule of a project, and the project's plan type when no schedule is set and the plan therefore explains why.

Implementation

typedef BackupScheduleView = ({
  String projectId,
  BackupSchedule? schedule,
  PlanType? planType,
});