Class DeedMetadataController

java.lang.Object
io.meeds.deeds.web.rest.DeedMetadataController

@RestController @RequestMapping("/api/deeds") public class DeedMetadataController extends Object
  • 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)