Skip to content

SimplifiedAllianceRequest

python
class SimplifiedAllianceRequest(BaseModel):
    requestorID: PlayerID
    recipientID: PlayerID
    createdAt: Tick
java
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

AttributeTypeDescription
requestorIDPlayerIDThe unique identifier of the player who initiated the alliance request.
recipientIDPlayerIDThe unique identifier of the player who received the alliance request.
createdAtTickThe game tick at which the alliance request was sent.