Class Parameter

java.lang.Object
io.vertx.mutiny.openapi.contract.Parameter
All Implemented Interfaces:
MutinyDelegate

public class Parameter extends Object implements MutinyDelegate
This interface represents the most important attributes of an OpenAPI Parameter.
Parameter V3.1
Parameter V3.0

NOTE: This class has been automatically generated from the original non Mutiny-ified interface using Vert.x codegen.

  • Field Details

  • Constructor Details

    • Parameter

      public Parameter(io.vertx.openapi.contract.Parameter delegate)
    • Parameter

      public Parameter(Object delegate)
  • Method Details

    • getDelegate

      public io.vertx.openapi.contract.Parameter getDelegate()
      Specified by:
      getDelegate in interface MutinyDelegate
      Returns:
      the delegate used by this Mutiny object of generated type
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • getName

      public String getName()
      Returns:
      name of this parameter
    • getIn

      public io.vertx.openapi.contract.Location getIn()
      Returns:
      location of this parameter
    • isRequired

      public boolean isRequired()
      Returns:
      true if the parameter is required, otherwise false;
    • getStyle

      public io.vertx.openapi.contract.Style getStyle()
      Returns:
      style of this parameter
    • isExplode

      public boolean isExplode()
      Returns:
      true if the parameter should become exploded, otherwise false;
    • getSchema

      public JsonSchema getSchema()
      Returns:
      the of the parameter
    • getSchemaType

      public io.vertx.json.schema.common.dsl.SchemaType getSchemaType()
      Returns:
      the of the parameter
    • newInstance

      public static Parameter newInstance(io.vertx.openapi.contract.Parameter arg)