C# Class PlayFab.ServerModels.ExecuteCloudScriptServerRequest

Inheritance: PlayFabRequestCommon
Afficher le fichier Open project: PlayFab/PlayFabGameServer

Méthodes publiques

Свойство Type Description
FunctionName string
FunctionParameter object
GeneratePlayStreamEvent bool?
PlayFabId string
RevisionSelection CloudScriptRevisionOption?
SpecificRevision int?

Property Details

FunctionName public_oe property

The name of the CloudScript function to execute
public string FunctionName
Résultat string

FunctionParameter public_oe property

Object that is passed in to the function as the first argument
public object FunctionParameter
Résultat object

GeneratePlayStreamEvent public_oe property

Generate a 'player_executed_cloudscript' PlayStream event containing the results of the function execution and other contextual information. This event will show up in the PlayStream debugger console for the player in Game Manager.
public bool? GeneratePlayStreamEvent
Résultat bool?

PlayFabId public_oe property

The unique user identifier for the player on whose behalf the script is being run
public string PlayFabId
Résultat string

RevisionSelection public_oe property

Option for which revision of the CloudScript to execute. 'Latest' executes the most recently created revision, 'Live' executes the current live, published revision, and 'Specific' executes the specified revision. The default value is 'Specific', if the SpeificRevision parameter is specified, otherwise it is 'Live'.
public CloudScriptRevisionOption? RevisionSelection
Résultat CloudScriptRevisionOption?

SpecificRevision public_oe property

The specivic revision to execute, when RevisionSelection is set to 'Specific'
public int? SpecificRevision
Résultat int?