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

io.fabric8.swagger.model.AuthorizationsProperty Maven / Gradle / Ivy

There is a newer version: 3.0.8
Show newest version

package io.fabric8.swagger.model;

import javax.annotation.Generated;
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)
@Generated("org.jsonschema2pojo")
@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