C# Class PlayFab.AdminModels.UpdateTaskRequest

Inheritance: PlayFabRequestCommon
Mostra 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_oe property

Description the task
public string Description
return string

Identifier public_oe property

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

IsActive public_oe property

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

Name public_oe property

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

Parameter public_oe 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_oe property

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

Type public_oe property

Task type.
public ScheduledTaskType Type
return ScheduledTaskType