C# Class PlayFab.AdminModels.UpdateTaskRequest

Inheritance: PlayFabRequestCommon
Show file Open project: PlayFab/PlayFabGameServer

Public Properties

Property Type Description
Description string
Identifier NameIdentifier
IsActive bool
Name string
Parameter object
Schedule string
Type ScheduledTaskType

Property Details

Description public property

Description the task
public string Description
return string

Identifier public property

Specify either the task ID or the name of the task to be updated.
public NameIdentifier,PlayFab.AdminModels Identifier
return NameIdentifier

IsActive public property

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

Name public property

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

Parameter public property

Parameter object specific to the task type. See each task type's create API documentation for 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

Type public property

Task type.
public ScheduledTaskType Type
return ScheduledTaskType