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

com.oneops.api.resource.model.Member Maven / Gradle / Ivy

There is a newer version: 5.0.25
Show newest version
package com.oneops.api.resource.model;

import java.util.List;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class Member {
	@JsonProperty("users")
	private List users;
	@JsonProperty("groups")
	private List groups;
	public List getUsers() {
		return users;
	}
	public void setUsers(List users) {
		this.users = users;
	}
	public List getGroups() {
		return groups;
	}
	public void setGroups(List groups) {
		this.groups = groups;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy