Bungie.ForumService.GetPostAndParentAwaitingApproval C# (CSharp) Method

GetPostAndParentAwaitingApproval() private method

private GetPostAndParentAwaitingApproval ( int childPostId, bool showBanned = null ) : Task
childPostId int
showBanned bool
return Task
        public Task<object> GetPostAndParentAwaitingApproval(int childPostId, bool? showBanned = null)
        {
            var model = new
            {
                childPostId,
                showBanned
            };

            return Request<object>(model);
        }