Interface TypesApi

All Known Subinterfaces:
TypesApiClient

public interface TypesApi
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.http.ResponseEntity<TypeEntry>
    getType(String typeId)
     
    org.springframework.http.ResponseEntity<TypePaging>
    listTypes(@Valid String where, @Min(0L) @Valid Integer skipCount, @Min(1L) @Valid Integer maxItems, @Valid List<String> include)
     
  • Method Details

    • getType

      @RequestMapping(value="/types/{typeId}", produces="application/json", consumes="", method=GET) org.springframework.http.ResponseEntity<TypeEntry> getType(@PathVariable("typeId") String typeId)
    • listTypes

      @RequestMapping(value="/types", produces="application/json", consumes="", method=GET) org.springframework.http.ResponseEntity<TypePaging> listTypes(@Valid @RequestParam(value="where",required=false) @Valid String where, @Min(0L) @Valid @RequestParam(value="skipCount",required=false,defaultValue="0") @Min(0L) @Valid Integer skipCount, @Min(1L) @Valid @RequestParam(value="maxItems",required=false,defaultValue="100") @Min(1L) @Valid Integer maxItems, @Valid @RequestParam(value="include",required=false) @Valid List<String> include)