-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #34 from 5GZORRO/feature/spectoken
Get NFTs end point
- Loading branch information
Showing
4 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
tm-forum/src/main/java/eu/_5gzorro/tm_forum/models/spectoken/NftResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package eu._5gzorro.tm_forum.models.spectoken; | ||
|
||
public class NftResponse { | ||
|
||
private final String id; | ||
|
||
private final String issuer; | ||
|
||
private final String holder; | ||
|
||
private final String tokenType; | ||
|
||
public NftResponse(String id, String issuer, String holder, String tokenType) { | ||
this.id = id; | ||
this.issuer = issuer; | ||
this.holder = holder; | ||
this.tokenType = tokenType; | ||
} | ||
|
||
public String getId() { | ||
return id; | ||
} | ||
|
||
public String getIssuer() { | ||
return issuer; | ||
} | ||
|
||
public String getHolder() { | ||
return holder; | ||
} | ||
|
||
public String getTokenType() { | ||
return tokenType; | ||
} | ||
|
||
} |