Skip to main content

AccountInfo

Namespace: Busy.Bar

The BUSY Cloud account linked to this device, if any.

public sealed record class AccountInfo : System.IEquatable`1[[Busy.Bar.AccountInfo, BusyBar, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]

Inheritance Object → AccountInfo
Implements IEquatable<AccountInfo>
Attributes NullableContextAttribute, NullableAttribute

Properties

Linked

Whether a BUSY Cloud account is currently linked to this device.

public bool? Linked { get; init; }

Property Value

Boolean?

Id

Identifier of the account link, if linked.

public string? Id { get; init; }

Property Value

String

Email

Email address of the linked account, if linked.

public string? Email { get; init; }

Property Value

String

UserId

Identifier of the linked BUSY Cloud user, if linked.

public string? UserId { get; init; }

Property Value

String

Constructors

AccountInfo(Boolean?, String, String, String)

The BUSY Cloud account linked to this device, if any.

public AccountInfo(bool? Linked, string? Id, string? Email, string? UserId)

Parameters

Linked Boolean?
Whether a BUSY Cloud account is currently linked to this device.

Id String?
Identifier of the account link, if linked.

Email String?
Email address of the linked account, if linked.

UserId String?
Identifier of the linked BUSY Cloud user, if linked.