Interface GeographicAddressApi
-
- All Known Implementing Classes:
TmaGeographicAddressApiController
@Generated(value="de.hybris.platform.b2ctelcotmfwebservices.swagger.TelcoCodegen", date="2020-02-20T06:17:51.077Z") public interface GeographicAddressApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<GeographicAddress>createGeographicAddress(@Valid GeographicAddress geographicAddress, @NotNull @Valid java.lang.String relatedPartyPeriodid)org.springframework.http.ResponseEntity<java.util.List<GeographicAddress>>geographicAddressFind(@Valid java.lang.String fields, @Valid java.lang.String baseSiteId, @Valid java.lang.String relatedPartyPeriodid, @Valid java.lang.String offset, @Valid java.lang.String limit)
-
-
-
Method Detail
-
createGeographicAddress
@RequestMapping(value="/geographicAddress", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) org.springframework.http.ResponseEntity<GeographicAddress> createGeographicAddress(@Valid @RequestBody @Valid GeographicAddress geographicAddress, @NotNull @Valid @RequestParam(value="relatedParty.id",required=true) @NotNull @Valid java.lang.String relatedPartyPeriodid)
-
geographicAddressFind
@RequestMapping(value="/geographicAddress", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<java.util.List<GeographicAddress>> geographicAddressFind(@Valid @RequestParam(value="fields",required=false) @Valid java.lang.String fields, @Valid @RequestParam(value="baseSiteId",required=false) @Valid java.lang.String baseSiteId, @Valid @RequestParam(value="relatedParty.id",required=false) @Valid java.lang.String relatedPartyPeriodid, @Valid @RequestParam(value="offset",required=false) @Valid java.lang.String offset, @Valid @RequestParam(value="limit",required=false) @Valid java.lang.String limit)
-
-