Skip to content

Commit 899c801

Browse files
committed
Fix for license server (floating licenses)
1 parent 7208f2c commit 899c801

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
package io.cryptolens.internal;
22

3+
import com.google.gson.annotations.SerializedName;
4+
35
public 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
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
package io.cryptolens.internal;
22

3+
import com.google.gson.annotations.SerializedName;
4+
35
public 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
}

0 commit comments

Comments
 (0)