Table of Contents

Struct ReleaseAsset

Namespace
Exiled.Loader.GHApi.Models
Assembly
Exiled.Loader.dll

An asset containing all information about a release.

public readonly struct ReleaseAsset
Inherited Members
Extension Methods

Constructors

ReleaseAsset(int, string, int, string, string)

Initializes a new instance of the ReleaseAsset struct.

[SerializationConstructor]
public ReleaseAsset(int id, string name, int size, string url, string browser_download_url)

Parameters

id int
name string
size int
url string
browser_download_url string

Fields

BrowserDownloadUrl

The release's download URL.

[DataMember(Name = "browser_download_url")]
public readonly string BrowserDownloadUrl

Field Value

string

Id

The release's id.

[DataMember(Name = "id")]
public readonly int Id

Field Value

int

Name

The release's name.

[DataMember(Name = "name")]
public readonly string Name

Field Value

string

Size

The release's size.

[DataMember(Name = "size")]
public readonly int Size

Field Value

int

Url

The release's URL.

[DataMember(Name = "url")]
public readonly string Url

Field Value

string