C# Class PlayFab.AdminModels.ScheduledTask

Datei anzeigen Open project: PlayFab/PlayFabGameServer

Public Properties

Property 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
return string

IsActive public_oe property

Whether the schedule is active. Inactive schedule will not trigger task execution.
public bool IsActive
return bool

LastRunTime public_oe property

UTC time of last run
public DateTime? LastRunTime
return DateTime?

Name public_oe property

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

NextRunTime public_oe property

UTC time of next run
public DateTime? NextRunTime
return 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
return object

Schedule public_oe property

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

TaskId public_oe property

ID of the task
public string TaskId
return string

Type public_oe property

Task type.
public ScheduledTaskType? Type
return ScheduledTaskType?