ENUM

SquadStreamInvitationStatus

Describes the current state of a squad stream invitation.

link GraphQL Schema definition

1enum SquadStreamInvitationStatus {
2
3# The recipient has accepted the invitation.
4ACCEPTED
5
6# A squad stream owner has deleted the invitation.
7DELETED
8
9# The invitation has been sent to the recipient and the sender is waiting for a
10# response.
11PENDING
12
13# The recipient has rejected the invitation.
14REJECTED
15
16# The invitation has an unknown status.
17UNKNOWN
18}