/* Options: Date: 2026-08-11 14:14:19 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: EngineGovernanceRequest.* //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/engine/governance", Verbs="GET,PUT,OPTIONS") public static class EngineGovernanceRequest implements IReturn { public String RolePermsJson = null; public String GuardsJson = null; public String PacksJson = null; public String BranchesJson = null; public String getRolePermsJson() { return RolePermsJson; } public EngineGovernanceRequest setRolePermsJson(String value) { this.RolePermsJson = value; return this; } public String getGuardsJson() { return GuardsJson; } public EngineGovernanceRequest setGuardsJson(String value) { this.GuardsJson = value; return this; } public String getPacksJson() { return PacksJson; } public EngineGovernanceRequest setPacksJson(String value) { this.PacksJson = value; return this; } public String getBranchesJson() { return BranchesJson; } public EngineGovernanceRequest setBranchesJson(String value) { this.BranchesJson = value; return this; } private static Object responseType = EngineGovernanceResponse.class; public Object getResponseType() { return responseType; } } public static class EngineGovernanceResponse { public String RolePermsJson = null; public String GuardsJson = null; public String PacksJson = null; public String BranchesJson = null; public ResponseStatus ResponseStatus = null; public String getRolePermsJson() { return RolePermsJson; } public EngineGovernanceResponse setRolePermsJson(String value) { this.RolePermsJson = value; return this; } public String getGuardsJson() { return GuardsJson; } public EngineGovernanceResponse setGuardsJson(String value) { this.GuardsJson = value; return this; } public String getPacksJson() { return PacksJson; } public EngineGovernanceResponse setPacksJson(String value) { this.PacksJson = value; return this; } public String getBranchesJson() { return BranchesJson; } public EngineGovernanceResponse setBranchesJson(String value) { this.BranchesJson = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public EngineGovernanceResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } }