/* Options: Date: 2026-04-04 03:04:44 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: AddComment.* //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.* /** * Add a comment to the specified object. */ @Route(Path="/comment", Verbs="POST") @Api(Description="Add a comment to the specified object.") open class AddComment : IReturn { /** * Object linked to the comment. */ @ApiMember(DataType="Guid", Description="Object linked to the comment.", IsRequired=true, Name="ConnectedObjectId") open var ConnectedObjectId:UUID? = null /** * Comment content */ @ApiMember(DataType="string", Description="Comment content", IsRequired=true, Name="Comment") open var Comment:String? = null /** * The comment suite id */ @ApiMember(DataType="Guid", Description="The comment suite id", Name="SuiteId") open var SuiteId:UUID? = null companion object { private val responseType = SendCommunicationResponse::class.java } override fun getResponseType(): Any? = AddComment.responseType } @ApiResponse(Description="Returns the communication id and response status.") open class SendCommunicationResponse { open var CommunicationId:UUID? = null open var ResponseStatus:ResponseStatus? = null }