Table of Contents

Class ServerEvent

Namespace
RustPlusApi.Fcm.Data.Events
Assembly
RustPlusApi.Fcm.dll

Describes a Rust game server received in a server-pairing FCM notification.

public sealed record ServerEvent : IEquatable<ServerEvent>
Inheritance
ServerEvent
Implements
Inherited Members

Properties

Desc

Optional server description.

public string? Desc { get; init; }

Property Value

string

Id

The server's unique Rust+ ID.

public Guid Id { get; init; }

Property Value

Guid

Img

Optional URL to a server banner image.

public string? Img { get; init; }

Property Value

string

Ip

IP address or hostname of the Rust+ companion port.

public string Ip { get; init; }

Property Value

string

Optional URL to the server's logo image.

public string? Logo { get; init; }

Property Value

string

Name

Display name of the server.

public string Name { get; init; }

Property Value

string

Port

Rust+ companion port number.

public int Port { get; init; }

Property Value

int

Url

Optional URL to the server's website.

public string? Url { get; init; }

Property Value

string