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

Script language

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

PayoutDefinition Constructor

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public PayoutDefinition()
public PayoutDefinition();
public PayoutDefinition(typeString: string, subtype: string, quantity: double)
public PayoutDefinition(string typeString, string subtype, double quantity);
public PayoutDefinition(typeString: string, subtype: string, quantity: double, data: string)
public PayoutDefinition(string typeString, string subtype, double quantity, string data);
public PayoutDefinition(subtype: string, quantity: double)
public PayoutDefinition(string subtype, double quantity);
public PayoutDefinition(subtype: string, quantity: double, data: string)
public PayoutDefinition(string subtype, double quantity, string data);
public PayoutDefinition(type: Purchasing.PayoutType, subtype: string, quantity: double)
public PayoutDefinition(Purchasing.PayoutType type, string subtype, double quantity);
public PayoutDefinition(type: Purchasing.PayoutType, subtype: string, quantity: double, data: string)
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: