C# Class PlayFab.AdminModels.ScheduledTask

Show file 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 property

Description the task
public string Description
return string

IsActive public property

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

LastRunTime public property

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

Name public property

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

NextRunTime public property

UTC time of next run
public DateTime? NextRunTime
return DateTime?

Parameter public 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 property

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

TaskId public property

ID of the task
public string TaskId
return string

Type public property

Task type.
public ScheduledTaskType? Type
return ScheduledTaskType?