com.github.gpluscb.ggjava.entity.enums.TeamMemberStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gg-java Show documentation
Show all versions of gg-java Show documentation
Java wrapper for the smash.gg GraphQL API
The newest version!
package com.github.gpluscb.ggjava.entity.enums;
import com.github.gpluscb.ggjava.entity.EntityType;
import javax.annotation.Nonnull;
/**
* Membership status of a team member
*/
public enum TeamMemberStatus implements GGEnum {
UNKNOWN,
ACCEPTED,
INVITED,
REQUESTED,
ALUM,
HIATUS,
OPEN_SPOT;
@Nonnull
@Override
public EntityType getGGEntityType() {
return EntityType.TEAM_MEMBER_STATUS;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy