/* Options: Date: 2025-10-27 22:15:22 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: GetCampaignInstanceActions.* //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="/campaign/getinstanceactions/{Id}", Verbs="GET") public static class GetCampaignInstanceActions implements IReturn> { @DataMember(Order=1) @Validate(Validator="NotNull") public UUID Id = null; public String Password = null; public UUID getId() { return Id; } public GetCampaignInstanceActions setId(UUID value) { this.Id = value; return this; } public String getPassword() { return Password; } public GetCampaignInstanceActions setPassword(String value) { this.Password = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }