io.polyapi.plugin.model.function.PolyFunctionArgument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polyapi-maven-plugin Show documentation
Show all versions of polyapi-maven-plugin Show documentation
Maven plugin to run handle Poly API functions.
package io.polyapi.plugin.model.function;
import lombok.Getter;
import lombok.Setter;
@Getter
@Setter
public class PolyFunctionArgument {
private String key;
private String name;
private String type;
private String typeSchema;
private Boolean required;
private Boolean secure;
}