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

com.github.gpluscb.ggjava.entity.enums.TeamMemberStatus Maven / Gradle / Ivy

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