API ReferenceSandbox.Services

Organizationclass

An organization on Asset Party. Organizations own packages and have members.

objectOrganization
Namespace
Sandbox.Services
Assembly
Sandbox.Engine
Declaration
public sealed class Sandbox.Services.Organization

Constructors1

Showing 1 constructors

public Organization()PUBLICCONSTRUCTOR

Methods1

Showing 1 methods

public static System.Threading.Tasks.Task`1<Sandbox.Services.Organization> Get(string ident)PUBLICSTATIC

Fetch an organization by its ident. Cached in-memory for the session and on disk across launches — if the backend is unreachable we'll fall back to the disk copy.

ParameterTypeDescription
identstring
Returns:Task<Organization>

Properties12

Showing 12 properties

public System.DateTimeOffset Sandbox.Services.Organization.Created { get; set; }PUBLICGETSET

When the organization was created.

Returns:DateTimeOffset

public string Sandbox.Services.Organization.Description { get; set; }PUBLICGETSET

Full description of this organization.

Returns:string

public string Sandbox.Services.Organization.Discord { get; set; }PUBLICGETSET

Link to the Discord of this organization, if set.

Returns:string

public string Sandbox.Services.Organization.Ident { get; set; }PUBLICGETSET

Unique string that identifies this organization.

Returns:string

public int Sandbox.Services.Organization.MemberCount { get; set; }PUBLICGETSET

Number of members of this organization.

Returns:int

public Sandbox.Services.Players.Profile[] Sandbox.Services.Organization.Members { get; set; }PUBLICGETSET

Members of this organization.

Returns:Profile[]

public int Sandbox.Services.Organization.PackageCount { get; set; }PUBLICGETSET

Number of packages owned by this organization.

Returns:int

public string Sandbox.Services.Organization.Summary { get; set; }PUBLICGETSET

Short summary of this organization.

Returns:string

public string Sandbox.Services.Organization.Thumb { get; set; }PUBLICGETSET

Link to the thumbnail image of this organization.

Returns:string

public string Sandbox.Services.Organization.Title { get; set; }PUBLICGETSET

Full or "nice" name of this organization.

Returns:string

public string Sandbox.Services.Organization.Twitter { get; set; }PUBLICGETSET

Link to Twitter of this organization, if set.

Returns:string

public string Sandbox.Services.Organization.WebUrl { get; set; }PUBLICGETSET

Link to the website of this organization, if set.

Returns:string

On this page