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

com.wordnik.swagger.models.Model Maven / Gradle / Ivy

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

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

import java.util.*;

public interface Model {
  String getDescription();
  void setDescription(String description);

  Map getProperties();
  void setProperties(Map properties);

  String getExample();
  void setExample(String example);

  ExternalDocs getExternalDocs();

  Object clone();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy