Beispiel #1
0
 public Task <Label> WithId(string labelId)
 {
     return(_restClient.RequestAsync <Label>(new LabelsWithIdRequest(labelId)));
 }
 public Task <Action> WithId(string actionId)
 {
     return(_restClient.RequestAsync <Action>(new ActionsRequest(actionId)));
 }
 public Task <Webhook> WithId(string id)
 {
     return(_restClient.RequestAsync <Webhook>(new WebhookRequest(new WebhookId(id))));
 }
Beispiel #4
0
 public Task <Notification> WithId(string notificationId)
 {
     return(_restClient.RequestAsync <Notification>(new NotificationsRequest(notificationId)));
 }
Beispiel #5
0
 public Task <List> WithId(string listId)
 {
     return(_restClient.RequestAsync <List>(new ListsRequest(listId)));
 }
 public Task <T> Get <T>(string uri, dynamic arguments = null) where T : class, new()
 {
     return(_restClient.RequestAsync <T>(new AdvancedRequest(uri, Method.GET, arguments)));
 }
 public Task <Member> WithId(string memberIdOrUsername)
 {
     return(_restClient.RequestAsync <Member>(new MembersRequest(memberIdOrUsername)));
 }
Beispiel #8
0
 public Task <Organization> WithId(string orgIdOrName)
 {
     return(_restClient.RequestAsync <Organization>(new OrganizationsRequest(orgIdOrName)));
 }
Beispiel #9
0
 public Task <Card> WithId(string cardId)
 {
     return(_restClient.RequestAsync <Card>(new CardsRequest(cardId)));
 }
Beispiel #10
0
 public Task <SearchResults> Search(string query, int limit = 10, SearchFilter filter = null, IEnumerable <ModelType> modelTypes = null, DateTime?since = null, bool partial = false)
 {
     return(_restClient.RequestAsync <SearchResults>(new SearchRequest(query, limit, filter, modelTypes, since, partial)));
 }
 public Task <Token> WithToken(string token)
 {
     return(_restClient.RequestAsync <Token>(new TokensRequest(token)));
 }
Beispiel #12
0
 public Task <Board> WithId(string boardId)
 {
     return(_restClient.RequestAsync <Board>(new BoardsRequest(boardId)));
 }
 public Task <Checklist> WithId(string checklistId)
 {
     return(_restClient.RequestAsync <Checklist>(new ChecklistsRequest(checklistId)));
 }