Version: 2017.3 (switch to 2017.4)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

PayoutDefinition Constructor

public PayoutDefinition();
public PayoutDefinition(string typeString, string subtype, double quantity);
public PayoutDefinition(string typeString, string subtype, double quantity, string data);
public PayoutDefinition(string subtype, double quantity);
public PayoutDefinition(string subtype, double quantity, string data);
public PayoutDefinition(Purchasing.PayoutType type, string subtype, double quantity);
public PayoutDefinition(Purchasing.PayoutType type, string subtype, double quantity, string data);

Parameters

typeString Specify a type using a string. Consider specifying the type by enum instead.
subtype Represents a subtype. This can be any string up to 64 characters. For example, you may specify a payout with type Currency and subtype "gold".
quantity The quantity to pay.
data Attach other data to the payout, up to 1024 characters. This can be an item id, a JSON document, or any other user data necessary to deliver the payout when purchased.
type Specify a type using a value from the PayoutType enum.

Description

Create a PayoutDefinition and define the values for the type, subtype, quantity, and data fields.

Did you find this page useful? Please give it a rating: