예제 #1
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && taskId != null)
     {
         return($"{parent.Path()}/data-export/{taskId}");
     }
     return($"{parent.Path()}/data-export");
 }
예제 #2
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && noteId != null)
     {
         return($"{parent.Path()}/notes/{noteId}");
     }
     return($"{parent.Path()}/notes");
 }
예제 #3
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && companyId != null)
     {
         return($"{parent.Path()}/companies/{companyId}");
     }
     return($"{parent.Path()}/companies");
 }
예제 #4
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && chatId != null)
     {
         return($"{parent.Path()}/conversations/{chatId}");
     }
     return($"{parent.Path()}/conversations");
 }
예제 #5
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && eventId != null)
     {
         return($"{parent.Path()}/events/{eventId}");
     }
     return($"{parent.Path()}/events");
 }
예제 #6
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && groupId != null)
     {
         return($"{parent.Path()}/groups/{groupId}");
     }
     return($"{parent.Path()}/groups");
 }
예제 #7
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && cardId != null)
     {
         return($"{parent.Path()}/adaptive-cards/{cardId}");
     }
     return($"{parent.Path()}/adaptive-cards");
 }
예제 #8
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && personId != null)
     {
         return($"{parent.Path()}/persons/{personId}");
     }
     return($"{parent.Path()}/persons");
 }
예제 #9
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && webhookId != null)
     {
         return($"{parent.Path()}/webhooks/{webhookId}");
     }
     return($"{parent.Path()}/webhooks");
 }
예제 #10
0
 public string Path()
 {
     return($"{parent.Path()}/everyone");
 }
예제 #11
0
 public string Path()
 {
     return($"{parent.Path()}/favorites");
 }
예제 #12
0
 public string Path()
 {
     return($"{parent.Path()}/preferences");
 }
예제 #13
0
 public string Path()
 {
     return($"{parent.Path()}/groups");
 }
예제 #14
0
 public string Path()
 {
     return($"{parent.Path()}/recent");
 }