
io.fabric8.swagger.model.AuthorizationsProperty Maven / Gradle / Ivy
package io.fabric8.swagger.model;
import javax.validation.constraints.NotNull;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import lombok.EqualsAndHashCode;
import lombok.ToString;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonPropertyOrder({
"scope",
"description"
})
@ToString
@EqualsAndHashCode
public class AuthorizationsProperty {
/**
*
* (Required)
*
*/
@JsonProperty("scope")
@NotNull
private String scope;
@JsonProperty("description")
private String description;
/**
*
* (Required)
*
* @return
* The scope
*/
@JsonProperty("scope")
public String getScope() {
return scope;
}
/**
*
* (Required)
*
* @param scope
* The scope
*/
@JsonProperty("scope")
public void setScope(String scope) {
this.scope = scope;
}
/**
*
* @return
* The description
*/
@JsonProperty("description")
public String getDescription() {
return description;
}
/**
*
* @param description
* The description
*/
@JsonProperty("description")
public void setDescription(String description) {
this.description = description;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy