/* Options: Date: 2026-06-22 20:28:48 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: GetProvisionOptionsRequest.* //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/provision/options", Verbs="GET") public static class GetProvisionOptionsRequest implements IReturn { private static Object responseType = ProvisionOptions.class; public Object getResponseType() { return responseType; } } public static class ProvisionOptions { public ArrayList Packs = new ArrayList(); public ArrayList TimeZones = new ArrayList(); public ArrayList RoleTemplates = new ArrayList(); public ArrayList StarterCatalog = new ArrayList(); public ResponseStatus ResponseStatus = null; public ArrayList getPacks() { return Packs; } public ProvisionOptions setPacks(ArrayList value) { this.Packs = value; return this; } public ArrayList getTimeZones() { return TimeZones; } public ProvisionOptions setTimeZones(ArrayList value) { this.TimeZones = value; return this; } public ArrayList getRoleTemplates() { return RoleTemplates; } public ProvisionOptions setRoleTemplates(ArrayList value) { this.RoleTemplates = value; return this; } public ArrayList getStarterCatalog() { return StarterCatalog; } public ProvisionOptions setStarterCatalog(ArrayList value) { this.StarterCatalog = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public ProvisionOptions setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class PackOption { public String Code = null; public String Name = null; public UUID PackId = null; public String getCode() { return Code; } public PackOption setCode(String value) { this.Code = value; return this; } public String getName() { return Name; } public PackOption setName(String value) { this.Name = value; return this; } public UUID getPackId() { return PackId; } public PackOption setPackId(UUID value) { this.PackId = value; return this; } } public static class RoleTemplate { public String Name = null; public String Description = null; public String getName() { return Name; } public RoleTemplate setName(String value) { this.Name = value; return this; } public String getDescription() { return Description; } public RoleTemplate setDescription(String value) { this.Description = value; return this; } } public static class StarterCatalogItem { public String Name = null; public BigDecimal Rate = null; public String getName() { return Name; } public StarterCatalogItem setName(String value) { this.Name = value; return this; } public BigDecimal getRate() { return Rate; } public StarterCatalogItem setRate(BigDecimal value) { this.Rate = value; return this; } } }