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

com.podio.org.EndMemberInfo Maven / Gradle / Ivy

The newest version!
package com.podio.org;

import java.util.List;

import org.codehaus.jackson.annotate.JsonProperty;

import com.podio.space.SpaceMemberDetails;

public class EndMemberInfo {

	/**
	 * list of spaces the user would just be removed from
	 */
	private List toRemove;
	
	/**
	 * list of spaces where all other users will be promoted to admin
	 */
	private List toPromote;
	
	/**
	 * list of spaces which would be deleted
	 */
	private List toDelete;

	@JsonProperty("to_remove")
	public List getToRemove() {
		return toRemove;
	}

	@JsonProperty("to_promote")
	public List getToPromote() {
		return toPromote;
	}

	@JsonProperty("to_delete")
	public List getToDelete() {
		return toDelete;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy