Package io.meeds.dapp.web.rest
Class DeedMetadataController
java.lang.Object
io.meeds.dapp.web.rest.DeedMetadataController
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<DeedMetadataPresentation>org.springframework.http.ResponseEntity<DeedMetadataPresentation>getNftMetadata(short cityIndex, short cardType) org.springframework.http.ResponseEntity<DeedMetadataPresentation>getNftMetadata(Long nftId)
-
Constructor Details
-
DeedMetadataController
public DeedMetadataController()
-
-
Method Details
-
getContractMetadata
@GetMapping public org.springframework.http.ResponseEntity<DeedMetadataPresentation> getContractMetadata() -
getNftMetadata
@GetMapping("/{nftId}") public org.springframework.http.ResponseEntity<DeedMetadataPresentation> getNftMetadata(@PathVariable(name="nftId") Long nftId) -
getNftMetadata
@GetMapping("/type/{cityIndex}/{cardType}") public org.springframework.http.ResponseEntity<DeedMetadataPresentation> getNftMetadata(@PathVariable(name="cityIndex") short cityIndex, @PathVariable(name="cardType") short cardType)
-