/* Options: Date: 2025-12-06 12:12:00 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://sfgboxapi.dev.scadsoftware.com //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: MediaLookup.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.*,com.google.gson.annotations.*,com.google.gson.reflect.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; import com.google.gson.annotations.*; import com.google.gson.reflect.*; public class dtos { @Route(Path="/media", Verbs="GET") @DataContract public static class MediaLookup implements IReturn> { @DataMember(Order=2) public Long tenantsId = null; @DataMember(Order=3) public String entity = null; @DataMember(Order=5) public Long entityId = null; @DataMember(Order=6) public String mediaType = null; @DataMember(Order=7) public String mediaPath = null; @DataMember(Order=8) public Long questionnairsId = null; @DataMember(Order=9) public String name = null; @DataMember(Order=10) public Boolean free = null; @DataMember(Order=11) public UUID publicAccessGuid = null; public Long getTenantsId() { return tenantsId; } public MediaLookup setTenantsId(Long value) { this.tenantsId = value; return this; } public String getEntity() { return entity; } public MediaLookup setEntity(String value) { this.entity = value; return this; } public Long getEntityId() { return entityId; } public MediaLookup setEntityId(Long value) { this.entityId = value; return this; } public String getMediaType() { return mediaType; } public MediaLookup setMediaType(String value) { this.mediaType = value; return this; } public String getMediaPath() { return mediaPath; } public MediaLookup setMediaPath(String value) { this.mediaPath = value; return this; } public Long getQuestionnairsId() { return questionnairsId; } public MediaLookup setQuestionnairsId(Long value) { this.questionnairsId = value; return this; } public String getName() { return name; } public MediaLookup setName(String value) { this.name = value; return this; } public Boolean isFree() { return free; } public MediaLookup setFree(Boolean value) { this.free = value; return this; } public UUID getPublicAccessGuid() { return publicAccessGuid; } public MediaLookup setPublicAccessGuid(UUID value) { this.publicAccessGuid = value; return this; } private static Object responseType = new TypeToken>(){}.getType(); public Object getResponseType() { return responseType; } } }