/* Options: Date: 2026-04-04 08:43:23 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://pfapi.pstpf.com.au/api //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: GetSuites.* //ExcludeTypes: //InitializeCollections: False //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.* /** * Get all suites */ @Route(Path="/suites") @Api(Description="Get all suites") open class GetSuites : IReturn { /** * Licensee Contact Id to return suites for. This will only return the suites that the contact has licenses for. If not set, all suites are returned */ @ApiMember(Description="Licensee Contact Id to return suites for. This will only return the suites that the contact has licenses for. If not set, all suites are returned", Name="LicenseeId") open var LicenseeId:UUID? = null companion object { private val responseType = GetSuitesResponse::class.java } override fun getResponseType(): Any? = GetSuites.responseType } @ApiResponse(Description="List of suites") open class GetSuitesResponse { open var Suites:ArrayList? = null open var ResponseStatus:ResponseStatus? = null } open class ListDataItem { open var Id:UUID? = null open var Name:String? = null open var Description:String? = null open var ShortName:String? = null open var DefaultName:String? = null open var IsDefault:Boolean? = null open var Order:Int? = null open var ListItemTrafficLightId:UUID? = null open var PrimaryListItemImageId:UUID? = null open var PrimaryListItemImageUrl:String? = null open var PrimaryImageThumbnailUrl:String? = null open var OwnerContactId:UUID? = null open var RecordStatus:String? = null open var Tags:String? = null open var ListId:UUID? = null open var MarkAsChecked:Boolean? = null open var RelatedObjectId:UUID? = null open var CanEdit:Boolean? = null open var IsOwner:Boolean? = null open var ExtraValues:ArrayList? = null open var ListItemFilters:ArrayList? = null } open class ListItemFilter { open var ListItemFilterId:UUID? = null open var FilterName:String? = null open var ListId:UUID? = null open var ListItemId:UUID? = null open var ListItemIsInFilter:Boolean? = null }