/* Options: Date: 2026-06-22 20:32:10 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.dev.dynamics.trendsic.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BillingPartiesRequest.* //ExcludeTypes: //InitializeCollections: True //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.* @Route(Path="/v1/project/{ProjectUID}/billing-parties", Verbs="GET,OPTIONS") open class BillingPartiesRequest : IReturn { open var ProjectUID:UUID? = null companion object { private val responseType = BillingPartiesResponse::class.java } override fun getResponseType(): Any? = BillingPartiesRequest.responseType } open class BillingPartiesResponse { open var ResponseStatus:ResponseStatus? = null open var FromName:String? = null open var FromPhone:String? = null open var FromEmail:String? = null open var FromAddress:String? = null open var ToName:String? = null open var ToPhone:String? = null open var ToEmail:String? = null open var ToAddress:String? = null }