/* Options: Date: 2025-12-06 10:00:34 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: CustomerToLocations.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; public class dtos { @Route(Path="/v1/CustomerToLocations", Verbs="GET,POST,PUT,DELETE,OPTIONS") // @Route(Path="/v1/CustomerToLocations/{CustomerId}", Verbs="GET,POST,PUT,DELETE,OPTIONS") public static class CustomerToLocations extends CustomerToLocationObject implements IReturn { public UUID ApiKey = null; public UUID getApiKey() { return ApiKey; } public CustomerToLocations setApiKey(UUID value) { this.ApiKey = value; return this; } private static Object responseType = CustomerToLocationsResponse.class; public Object getResponseType() { return responseType; } } public static class CustomerToLocationsResponse { public ResponseStatus ResponseStatus = null; public ArrayList CustomerToLocations = new ArrayList(); public ResponseStatus getResponseStatus() { return ResponseStatus; } public CustomerToLocationsResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } public ArrayList getCustomerToLocations() { return CustomerToLocations; } public CustomerToLocationsResponse setCustomerToLocations(ArrayList value) { this.CustomerToLocations = value; return this; } } public static class CustomerToLocationObject { public UUID CustomerId = null; public UUID LocationId = null; public UUID getCustomerId() { return CustomerId; } public CustomerToLocationObject setCustomerId(UUID value) { this.CustomerId = value; return this; } public UUID getLocationId() { return LocationId; } public CustomerToLocationObject setLocationId(UUID value) { this.LocationId = value; return this; } } }