/* Options: Date: 2026-05-29 18:36:25 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetCompanyFeatureFlags.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import java.io.InputStream; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/feature/{CompanyId}", Verbs="GET") @ApiResponse(Description="Returned if the company was not found", StatusCode=404) public static class GetCompanyFeatureFlags implements IReturn>, ICompany { /** * The company id. */ @ApiMember(Description="The company id.", IsRequired=true, ParameterType="path") public UUID CompanyId = null; public UUID getCompanyId() { return CompanyId; } public GetCompanyFeatureFlags setCompanyId(UUID value) { this.CompanyId = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } @DataContract public static class QueryResponse { @DataMember(Order=1) public Integer Offset = null; @DataMember(Order=2) public Integer Total = null; @DataMember(Order=3) public ArrayList Results = new ArrayList(); @DataMember(Order=4) public HashMap Meta = null; @DataMember(Order=5) public ResponseStatus ResponseStatus = null; public Integer getOffset() { return Offset; } public QueryResponse setOffset(Integer value) { this.Offset = value; return this; } public Integer getTotal() { return Total; } public QueryResponse setTotal(Integer value) { this.Total = value; return this; } public ArrayList getResults() { return Results; } public QueryResponse setResults(ArrayList value) { this.Results = value; return this; } public HashMap getMeta() { return Meta; } public QueryResponse setMeta(HashMap value) { this.Meta = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public QueryResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } public static class CompanyFeatureFlagResponse { public Integer Id = null; public String Name = null; public Boolean IsEnabled = null; public Boolean IsPublic = null; public Boolean CompanyAdminCanToggle = null; public ResponseStatus ResponseStatus = null; public Integer getId() { return Id; } public CompanyFeatureFlagResponse setId(Integer value) { this.Id = value; return this; } public String getName() { return Name; } public CompanyFeatureFlagResponse setName(String value) { this.Name = value; return this; } public Boolean getIsEnabled() { return IsEnabled; } public CompanyFeatureFlagResponse setIsEnabled(Boolean value) { this.IsEnabled = value; return this; } public Boolean getIsPublic() { return IsPublic; } public CompanyFeatureFlagResponse setIsPublic(Boolean value) { this.IsPublic = value; return this; } public Boolean isCompanyAdminCanToggle() { return CompanyAdminCanToggle; } public CompanyFeatureFlagResponse setCompanyAdminCanToggle(Boolean value) { this.CompanyAdminCanToggle = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public CompanyFeatureFlagResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }