internal RestInvite(RestDiscordClient client, InviteModel model) : base(client) { Code = model.Code; Guild = new RestGuild(client, model.Guild); model.Channel.GuildId = model.Guild.Id; Channel = RestChannel.Create(client, model.Channel); Update(model); }
public async Task <T> GetChannelAsync <T>(Snowflake channelId, RestRequestOptions options = null) where T : RestChannel { try { var model = await ApiClient.GetChannelAsync(channelId, options).ConfigureAwait(false); return((T)RestChannel.Create(this, model)); } catch (DiscordHttpException ex) when(ex.HttpStatusCode == HttpStatusCode.NotFound) { return(null); } }