Legacy Documentation: Version 2018.2 (Go to current version)
LanguageEnglish
  • C#

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

typeStringSpecify a type using a string. Consider specifying the type by enum instead.
subtypeRepresents a subtype. This can be any string up to 64 characters. For example, you may specify a payout with type Currency and subtype "gold".
quantityThe quantity to pay.
dataAttach 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.
typeSpecify 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: