
com.podio.org.EndMemberInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official Java wrapper for the Podio API
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