PayoutDefinition.cs
5.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
using System;
using UnityEngine;
using System.Collections.Generic;
namespace UnityEngine.Purchasing
{
/// <summary>
/// Definition of a purchase payout
/// </summary>
[Serializable]
public class PayoutDefinition
{
[SerializeField]
PayoutType m_Type = PayoutType.Other;
[SerializeField]
string m_Subtype = string.Empty;
[SerializeField]
double m_Quantity;
[SerializeField]
string m_Data = string.Empty;
/// <summary>
/// Type of the payout
/// </summary>
public PayoutType type {
get {
return m_Type;
}
private set {
m_Type = value;
}
}
/// <summary>
/// Type of the payout as a string
/// </summary>
public string typeString {
get {
return m_Type.ToString ();
}
}
/// <summary>
/// Maximum string length of the payout subtype
/// </summary>
public const int MaxSubtypeLength = 64;
/// <summary>
/// Subtype of the payout
/// </summary>
public string subtype {
get {
return m_Subtype;
}
private set {
if (value.Length > MaxSubtypeLength)
throw new ArgumentException(string.Format("subtype cannot be longer than {0}", MaxSubtypeLength));
m_Subtype = value;
}
}
/// <summary>
/// Quantity or value of the payout
/// </summary>
public double quantity {
get {
return m_Quantity;
}
private set {
m_Quantity = value;
}
}
/// <summary>
/// Maximum number of bytes of the payout data
/// </summary>
public const int MaxDataLength = 1024;
/// <summary>
/// Payload data of the payout
/// </summary>
public string data {
get {
return m_Data;
}
private set {
if (value.Length > MaxDataLength)
throw new ArgumentException (string.Format ("data cannot be longer than {0}", MaxDataLength));
m_Data = value;
}
}
/// <summary>
/// Default constructor
/// </summary>
public PayoutDefinition()
{
}
/// <summary>
/// Parametrized constructor
/// </summary>
/// <param name="typeString"> The payout type, as a string. </param>
/// <param name="subtype"> The payout subtype. </param>
/// <param name="quantity"> The payout quantity. </param>
public PayoutDefinition (string typeString, string subtype, double quantity) : this (typeString, subtype, quantity, string.Empty)
{
}
/// <summary>
/// Parametrized constructor
/// </summary>
/// <param name="typeString"> The payout type, as a string. </param>
/// <param name="subtype"> The payout subtype. </param>
/// <param name="quantity"> The payout quantity. </param>
/// <param name="data"> The payout data. </param>
public PayoutDefinition (string typeString, string subtype, double quantity, string data)
{
PayoutType t = PayoutType.Other;
if (Enum.IsDefined(typeof(PayoutType), typeString))
t = (PayoutType)Enum.Parse (typeof (PayoutType), typeString);
this.type = t;
this.subtype = subtype;
this.quantity = quantity;
this.data = data;
}
/// <summary>
/// Parametrized constructor
/// </summary>
/// <param name="subtype"> The payout subtype. </param>
/// <param name="quantity"> The payout quantity. </param>
public PayoutDefinition (string subtype, double quantity) : this (PayoutType.Other, subtype, quantity, string.Empty)
{
}
/// <summary>
/// Parametrized constructor
/// </summary>
/// <param name="subtype"> The payout subtype. </param>
/// <param name="quantity"> The payout quantity. </param>
/// <param name="data"> The payout data. </param>
public PayoutDefinition (string subtype, double quantity, string data) : this (PayoutType.Other, subtype, quantity, data)
{
}
/// <summary>
/// Parametrized constructor
/// </summary>
/// <param name="type"> The payout type. </param>
/// <param name="subtype"> The payout subtype. </param>
/// <param name="quantity"> The payout quantity. </param>
public PayoutDefinition (PayoutType type, string subtype, double quantity) : this (type, subtype, quantity, string.Empty)
{
}
/// <summary>
/// Parametrized constructor
/// </summary>
/// <param name="type"> The payout type. </param>
/// <param name="subtype"> The payout subtype. </param>
/// <param name="quantity"> The payout quantity. </param>
/// <param name="data"> The payout data. </param>
public PayoutDefinition (PayoutType type, string subtype, double quantity, string data)
{
this.type = type;
this.subtype = subtype;
this.quantity = quantity;
this.data = data;
}
}
}