com.github.gpluscb.ggjava.entity.object.response.enums.TeamMemberStatusResponse 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.object.response.enums;
import com.github.gpluscb.ggjava.entity.EntityType;
import com.github.gpluscb.ggjava.entity.enums.TeamMemberStatus;
import javax.annotation.Nonnull;
/**
* Membership status of a team member
*/
public class TeamMemberStatusResponse extends EnumResponse {
public TeamMemberStatusResponse() {
super(EntityType.TEAM_MEMBER_STATUS);
}
public TeamMemberStatusResponse(@Nonnull TeamMemberStatus value) {
super(EntityType.TEAM_MEMBER_STATUS, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy