C# Class PlayFab.AdminModels.ScheduledTask

Afficher le fichier Open project: PlayFab/PlayFabGameServer

Méthodes publiques

Свойство Type Description
Description string
IsActive bool
LastRunTime DateTime?
Name string
NextRunTime DateTime?
Parameter object
Schedule string
TaskId string
Type ScheduledTaskType?

Property Details

Description public_oe property

Description the task
public string Description
Résultat string

IsActive public_oe property

Whether the schedule is active. Inactive schedule will not trigger task execution.
public bool IsActive
Résultat bool

LastRunTime public_oe property

UTC time of last run
public DateTime? LastRunTime
Résultat DateTime?

Name public_oe property

Name of the task. This is a unique identifier for tasks in the title.
public string Name
Résultat string

NextRunTime public_oe property

UTC time of next run
public DateTime? NextRunTime
Résultat DateTime?

Parameter public_oe property

Task parameter. Different types of task have different parameter structure. See each task type's create API documentation for the details.
public object Parameter
Résultat object

Schedule public_oe property

Cron expression for the run schedule of the task. The expression should be in UTC.
public string Schedule
Résultat string

TaskId public_oe property

ID of the task
public string TaskId
Résultat string

Type public_oe property

Task type.
public ScheduledTaskType? Type
Résultat ScheduledTaskType?