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

commonMain.com.lt.lazy_people_http.config.ParameterLocation.kt Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
package com.lt.lazy_people_http.config

/**
 * creator: lt  2023/4/29  [email protected]
 * effect : 表示这个参数所在的位置
 * warning:
 */
enum class ParameterLocation {
    /**
     * 请求参数的名字
     */
    ParameterKey,

    /**
     * 请求参数的值
     */
    ParameterValue,

    /**
     * 请求头的名字
     */
    HeaderKey,

    /**
     * 请求头的值
     */
    HeaderValue,

    /**
     * 完整的请求地址
     */
    Url,

    /**
     * 返回的数据
     */
    Result,
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy