All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cc.unitmesh.processor.api.postman.PostmanItem.kt Maven / Gradle / Ivy

package cc.unitmesh.processor.api.postman

import kotlinx.serialization.Serializable

@Serializable
open class PostmanItem {
    open val item: List? = null
    open var name: String? = null
    open var description: String? = null
    open var event: List? = null
    open var request: PostmanRequest? = null
    open var response: List? = null
    open var protocolProfileBehavior: PostmanProtocolProfileBehavior? = null
}

@Serializable
class PostmanProtocolProfileBehavior {
    var disableBodyPruning: Boolean? = null
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy