/* Options: Date: 2025-10-28 01:31:26 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://duengageapi.uat.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetCampaignInstanceActionsIsPasswordProtected.* //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="/campaign/getinstanceactions/ispasswordprotected/{Id}", Verbs="GET") public static class GetCampaignInstanceActionsIsPasswordProtected implements IReturn { @DataMember(Order=1) @Validate(Validator="NotNull") public UUID Id = null; public String Password = null; public UUID getId() { return Id; } public GetCampaignInstanceActionsIsPasswordProtected setId(UUID value) { this.Id = value; return this; } public String getPassword() { return Password; } public GetCampaignInstanceActionsIsPasswordProtected setPassword(String value) { this.Password = value; return this; } private static Object responseType = Boolean.class; public Object getResponseType() { return responseType; } } }