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

com.wordnik.swagger.models.parameters.SerializableParameter Maven / Gradle / Ivy

The newest version!
package com.wordnik.swagger.models.parameters;

import com.wordnik.swagger.models.properties.*;

import java.util.List;

public interface SerializableParameter extends Parameter {
  String getType();
  void setType(String type);

  void setItems(Property items);
  Property getItems();

  String getFormat();
  void setFormat(String format);

  String getCollectionFormat();
  void setCollectionFormat(String collectionFormat);

  List getEnum();
  void setEnum(List _enum);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy