edu.internet2.middleware.grouper.azure.model.AzureGraphGroupMembers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of grouper-azure-provisioner Show documentation
Show all versions of grouper-azure-provisioner Show documentation
Office365 and Azure Apps Integration Library
package edu.internet2.middleware.grouper.azure.model;
import com.google.gson.annotations.SerializedName;
import java.util.List;
public class AzureGraphGroupMembers {
@SerializedName("@odata.context")
public final String context;
@SerializedName("value") public final List users;
public AzureGraphGroupMembers(String context, List users) {
this.context = context;
this.users = users;
}
@Override
public String toString() {
return "Members{" +
"context='" + context + '\'' +
", users=" + users +
'}';
}
}