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

org.zalando.iam.teams.Account Maven / Gradle / Ivy

The newest version!
package org.zalando.iam.teams;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * @author  jbellmann
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class Account {

    private String id;

    private String description;

    public String getId() {
        return id;
    }

    public void setId(final String id) {
        this.id = id;
    }

    public String getDescription() {
        return description;
    }

    public void setDescription(final String description) {
        this.description = description;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy