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

io.github.stylesmile.knife4j.openapi.SwaggerParameter Maven / Gradle / Ivy

package io.github.stylesmile.knife4j.openapi;

import lombok.Data;

import java.util.Set;

/**
 * swagger 参数信息
 */
@Data
public class SwaggerParameter {
    /**
     * 参数名称 英文
     */
    private String name;
    private String in;
    private String description;
    /**
     * 参数类型 String
     */
    private Set schema;
    /**
     * 是否必须
     */
    private boolean required = false;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy