File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed
src/main/java/io/cryptolens/internal Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 11package io .cryptolens .internal ;
22
3+ import com .google .gson .annotations .SerializedName ;
4+
35public class ActivateResult extends BasicResult {
46
7+ @ SerializedName (value = "licenseKey" , alternate = {"LicenseKey" })
58 public String licenseKey ;
9+
10+ @ SerializedName (value = "signature" , alternate = {"Signature" })
611 public String signature ;
712}
Original file line number Diff line number Diff line change 11package io .cryptolens .internal ;
22
3+ import com .google .gson .annotations .SerializedName ;
4+
35public class BasicResult {
6+
7+ @ SerializedName (value = "result" , alternate = {"Result" })
48 public int result ;
9+
10+ @ SerializedName (value = "message" , alternate = {"Message" })
511 public String message ;
12+
13+ @ SerializedName (value = "rawResponse" , alternate = {"RawResponse" })
614 public String RawResponse ;
715}
You can’t perform that action at this time.
0 commit comments