/* 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: GetStates.* //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 states for the specified country */ @Route(Path="/states/{CountryId}") @Api(Description="Get states for the specified country") open class GetStates : IReturn { /** * Get states for the specified country id */ @ApiMember(Description="Get states for the specified country id", Name="CountryId") open var CountryId:UUID? = null companion object { private val responseType = GetStatesResponse::class.java } override fun getResponseType(): Any? = GetStates.responseType } @ApiResponse(Description="List of states") open class GetStatesResponse { open var States:ArrayList? = null open var ResponseStatus:ResponseStatus? = null } open class StateModel { open var StateId:UUID? = null open var Name:String? = null open var ShortName:String? = null }