cc.unitmesh.processor.api.postman.PostmanEvent.kt Maven / Gradle / Ivy
package cc.unitmesh.processor.api.postman
import kotlinx.serialization.Serializable
@Serializable
class PostmanEvent {
var listen: String? = null
var script: PostmanScript? = null
}