accountOfficelocationGet method

Future<Response<WebApiModulesAccountServicesAccountAccountControllerGetOfficeLocationResponse>> accountOfficelocationGet({
  1. String? locationid,
  2. String? warehouseid,
  3. String? departmentid,
})

@param locationid @param warehouseid @param departmentid

Implementation

Future<
  chopper.Response<
    WebApiModulesAccountServicesAccountAccountControllerGetOfficeLocationResponse
  >
>
accountOfficelocationGet({
  String? locationid,
  String? warehouseid,
  String? departmentid,
}) {
  generatedMapping.putIfAbsent(
    WebApiModulesAccountServicesAccountAccountControllerGetOfficeLocationResponse,
    () =>
        WebApiModulesAccountServicesAccountAccountControllerGetOfficeLocationResponse
            .fromJsonFactory,
  );

  return _accountOfficelocationGet(
    locationid: locationid,
    warehouseid: warehouseid,
    departmentid: departmentid,
  );
}