/* Options: Date: 2026-04-04 08:35:06 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: GetSettingsForAppliance.* //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 { /** * Returns system settings for a specified appliance. */ @Api(Description="Returns system settings for a specified appliance.") public static class GetSettingsForAppliance implements IReturn> { /** * The appliance ID to return settings for. */ @ApiMember(DataType="Guid", Description="The appliance ID to return settings for.", IsRequired=true, Name="ApplianceId", ParameterType="query") public UUID ApplianceId = null; /** * A list of the setting Id's that are to be retrieved. */ @ApiMember(DataType="Guid", Description="A list of the setting Id's that are to be retrieved.", IsRequired=true, Name="SettingIds", ParameterType="query") public ArrayList SettingIds = new ArrayList(); public UUID getApplianceId() { return ApplianceId; } public GetSettingsForAppliance setApplianceId(UUID value) { this.ApplianceId = value; return this; } public ArrayList getSettingIds() { return SettingIds; } public GetSettingsForAppliance setSettingIds(ArrayList value) { this.SettingIds = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }