You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/main/java/com/starkbank/DynamicBrcode.java
+83-1
Original file line number
Diff line number
Diff line change
@@ -29,6 +29,8 @@ public final class DynamicBrcode extends Resource {
29
29
* tags [list of strings, default []]: list of strings for tagging, these will be passed to the respective Deposit resource when paid
30
30
* id [string]: id returned on creation, this is the BR code. ex: "00020126360014br.gov.bcb.pix0114+552840092118152040000530398654040.095802BR5915Jamie Lannister6009Sao Paulo620705038566304FC6C"
31
31
* uuid [string]: unique uuid returned when the DynamicBrcode is created. ex: "4e2eab725ddd495f9c98ffd97440702d"
32
+
* rules [list of DynamicBrcode.Rules, default []]: list of DynamicBrcode.Rule objects for modifying DynamicBrcode behavior. ex: [DynamicBrcode.Rule(key="allowedTaxIds", value=[ "012.345.678-90", "45.059.493/0001-73" ])]
33
+
* displayDescription [string]: purchase descriptions. ex: "Payment for service #1234"
32
34
* pictureUrl [string]: public QR Code (png image) URL. "https://sandbox.api.starkbank.com/v2/dynamic-brcode/d3ebb1bd92024df1ab6e5a353ee799a4.png"
33
35
* updated [string]: creation datetime for the DynamicBrcode. ex: "2020-03-10 10:30:00.000000+00:00"
34
36
* created [string]: creation datetime for the DynamicBrcode. ex: "2020-03-10 10:30:00.000000+00:00"
@@ -40,6 +42,8 @@ public final class DynamicBrcode extends Resource {
40
42
publicNumberexpiration;
41
43
publicString[] tags;
42
44
publicStringuuid;
45
+
publicStringdisplayDescription;
46
+
publicList<DynamicBrcode.Rule> rules;
43
47
publicStringpictureUrl;
44
48
publicStringupdated;
45
49
publicStringcreated;
@@ -61,19 +65,23 @@ public final class DynamicBrcode extends Resource {
61
65
* @param tags [list of strings, default []]: list of strings for tagging, these will be passed to the respective Deposit resource when paid
62
66
* @param id [string]: id returned on creation, this is the BR code. ex: "00020126360014br.gov.bcb.pix0114+552840092118152040000530398654040.095802BR5915Jamie Lannister6009Sao Paulo620705038566304FC6C"
63
67
* @param uuid [string]: unique uuid returned when the DynamicBrcode is created. ex: "4e2eab725ddd495f9c98ffd97440702d"
68
+
* @param rules [list of DynamicBrcode.Rules, default []]: list of DynamicBrcode.Rule objects for modifying DynamicBrcode behavior. ex: [DynamicBrcode.Rule(key="allowedTaxIds", value=[ "012.345.678-90", "45.059.493/0001-73" ])]
69
+
* @param displayDescription [string]: purchase descriptions. ex: "Payment for service #1234"
64
70
* @param pictureUrl [string]: public QR Code (png image) URL. "https://sandbox.api.starkbank.com/v2/dynamic-brcode/d3ebb1bd92024df1ab6e5a353ee799a4.png"
65
71
* @param updated [string]: creation datetime for the DynamicBrcode. ex: "2020-03-10 10:30:00.000000+00:00"
66
72
* @param created [string]: creation datetime for the DynamicBrcode. ex: "2020-03-10 10:30:00.000000+00:00"
* id [string]: id returned on creation, this is the BR code. ex: "00020126360014br.gov.bcb.pix0114+552840092118152040000530398654040.095802BR5915Jamie Lannister6009Sao Paulo620705038566304FC6C"
103
111
* uuid [string]: unique uuid returned when the DynamicBrcode is created. ex: "4e2eab725ddd495f9c98ffd97440702d"
112
+
* rules [list of DynamicBrcode.Rules, default []]: list of DynamicBrcode.Rule objects for modifying DynamicBrcode behavior. ex: [DynamicBrcode.Rule(key="allowedTaxIds", value=[ "012.345.678-90", "45.059.493/0001-73" ])]
113
+
* displayDescription [string]: purchase descriptions. ex: "Payment for service #1234"
104
114
* pictureUrl [string]: public QR Code (png image) URL. "https://sandbox.api.starkbank.com/v2/dynamic-brcode/d3ebb1bd92024df1ab6e5a353ee799a4.png"
105
115
* updated [string]: latest updated datetime for the DynamicBrcode. ex: "2020-03-10 10:30:00.000000+00:00"
106
116
* created [string]: creation datetime for the DynamicBrcode. ex: "2020-03-10 10:30:00.000000+00:00"
0 commit comments