SimplifiedAllianceRequest
python
class SimplifiedAllianceRequest(BaseModel):
requestorID: PlayerID
recipientID: PlayerID
createdAt: Tickjava
public class SimplifiedAllianceRequest {
@NotNull public PlayerID requestorID;
@NotNull public PlayerID recipientID;
@NotNull public Tick createdAt;
}Encapsulates information about an alliance request between two players in an ongoing game.
Attributes
| Attribute | Type | Description |
|---|---|---|
requestorID | PlayerID | The unique identifier of the player who initiated the alliance request. |
recipientID | PlayerID | The unique identifier of the player who received the alliance request. |
createdAt | Tick | The game tick at which the alliance request was sent. |
