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

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

package cc.unitmesh.processor.api.postman

class PostmanEnvValue {
    var key: String? = null
    var value: String? = null
    var type: String? = null
    var name: String? = null
    override fun toString(): String {
        return "[$key:$value]"
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy