Skip to content

Commit

Permalink
Merge pull request #21 from ATOR-Development/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
floodcode authored Jun 27, 2024
2 parents 6f9c2bc + d0679e5 commit 9e65869
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ public class HardwareInfoDocument extends Document {
private String format;
private String wallet;
private String fingerprint;
private String nftid;
private String build;
private String flags;
private List<SerNum> serNums;
private List<PubKey> pubKeys;
private List<Cert> certs;
Expand Down Expand Up @@ -53,6 +56,29 @@ public void setFingerprint(String fingerprint) {
this.fingerprint = fingerprint;
}

public String getNftid() {
return nftid;
}

public void setNftid(String nftid) {
this.nftid = nftid;
}

public String getBuild() {
return build;
}

public void setBuild(String build) {
this.build = build;
}

public String getFlags() {
return flags;
}

public void setFlags(String flags) {
this.flags = flags;
}
public List<SerNum> getSerNums() {
return serNums;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ public class HardwareInfoUpdateRequest {
private String format;
private String wallet;
private String fingerprint;
private String nftid;
private String build;
private String flags;
private List<SerNum> serNums;
private List<PubKey> pubKeys;
private List<Cert> certs;
Expand Down Expand Up @@ -59,6 +62,30 @@ public void setFingerprint(String fingerprint) {
this.fingerprint = fingerprint;
}

public String getNftid() {
return nftid;
}

public void setNftid(String nftid) {
this.nftid = nftid;
}

public String getBuild() {
return build;
}

public void setBuild(String build) {
this.build = build;
}

public String getFlags() {
return flags;
}

public void setFlags(String flags) {
this.flags = flags;
}

public List<SerNum> getSerNums() {
return serNums;
}
Expand Down

0 comments on commit 9e65869

Please sign in to comment.