Newer
Older
drafter-groovy / src / main / groovy / io / swagger / model / Error.groovy
package io.swagger.model;

import groovy.transform.Canonical
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.model.ErrorException;
@Canonical
class Error {

    String type = null

  /* String representing the class of error that occurred */
  String errorType = null

    ErrorException exception = null
  

}