use of bio.terra.model.EnumerateBillingProfileModel in project jade-data-repo by DataBiosphere.
the class ResourcesApiController method enumerateProfiles.
@Override
public ResponseEntity<EnumerateBillingProfileModel> enumerateProfiles(@Valid Integer offset, @Valid Integer limit) {
ControllerUtils.validateEnumerateParams(offset, limit);
EnumerateBillingProfileModel ebpm = profileService.enumerateProfiles(offset, limit);
return new ResponseEntity<>(ebpm, HttpStatus.OK);
}
Aggregations