/* Options: Date: 2026-08-01 06:24:58 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: PayRulePoliciesRequest.* //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/workforce/payrules/list", Verbs="GET") public static class PayRulePoliciesRequest implements IReturn { private static Object responseType = PayRulePoliciesResponse.class; public Object getResponseType() { return responseType; } } public static class PayRulePoliciesResponse { public ArrayList Policies = new ArrayList(); public ResponseStatus ResponseStatus = null; public ArrayList getPolicies() { return Policies; } public PayRulePoliciesResponse setPolicies(ArrayList value) { this.Policies = value; return this; } public ResponseStatus getResponseStatus() { return ResponseStatus; } public PayRulePoliciesResponse setResponseStatus(ResponseStatus value) { this.ResponseStatus = value; return this; } } public static class PayRulePolicy { public Integer PayRulePolicyId = null; public UUID PayRulePolicyUID = null; public String Name = null; public String ScopeLevel = null; public UUID BranchId = null; public String JurisdictionKey = null; public String CbaKey = null; public String WorkTypeKey = null; public Integer CurrentVersion = null; public Boolean IsActive = null; public String BranchName = null; public Integer getPayRulePolicyId() { return PayRulePolicyId; } public PayRulePolicy setPayRulePolicyId(Integer value) { this.PayRulePolicyId = value; return this; } public UUID getPayRulePolicyUID() { return PayRulePolicyUID; } public PayRulePolicy setPayRulePolicyUID(UUID value) { this.PayRulePolicyUID = value; return this; } public String getName() { return Name; } public PayRulePolicy setName(String value) { this.Name = value; return this; } public String getScopeLevel() { return ScopeLevel; } public PayRulePolicy setScopeLevel(String value) { this.ScopeLevel = value; return this; } public UUID getBranchId() { return BranchId; } public PayRulePolicy setBranchId(UUID value) { this.BranchId = value; return this; } public String getJurisdictionKey() { return JurisdictionKey; } public PayRulePolicy setJurisdictionKey(String value) { this.JurisdictionKey = value; return this; } public String getCbaKey() { return CbaKey; } public PayRulePolicy setCbaKey(String value) { this.CbaKey = value; return this; } public String getWorkTypeKey() { return WorkTypeKey; } public PayRulePolicy setWorkTypeKey(String value) { this.WorkTypeKey = value; return this; } public Integer getCurrentVersion() { return CurrentVersion; } public PayRulePolicy setCurrentVersion(Integer value) { this.CurrentVersion = value; return this; } public Boolean getIsActive() { return IsActive; } public PayRulePolicy setIsActive(Boolean value) { this.IsActive = value; return this; } public String getBranchName() { return BranchName; } public PayRulePolicy setBranchName(String value) { this.BranchName = value; return this; } } }