
org.zalando.iam.teams.InfrastructureAccount Maven / Gradle / Ivy
The newest version!
package org.zalando.iam.teams;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
/**
* @author jbellmann
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class InfrastructureAccount {
private String type;
private String id;
public String getType() {
return type;
}
public void setType(final String type) {
this.type = type;
}
public String getId() {
return id;
}
public void setId(final String id) {
this.id = id;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy