コード例 #1
0
 public string Path(bool withParameter = true)
 {
     if (withParameter && batchId != null)
     {
         return($"{parent.Path()}/batch/{batchId}");
     }
     return($"{parent.Path()}/batch");
 }
コード例 #2
0
ファイル: Index.cs プロジェクト: ringcentral/RingCentral.Net
 public string Path(bool withParameter = true)
 {
     if (withParameter && messageId != null)
     {
         return($"{parent.Path()}/messages/{messageId}");
     }
     return($"{parent.Path()}/messages");
 }
コード例 #3
0
ファイル: Index.cs プロジェクト: ringcentral/RingCentral.Net
 public string Path()
 {
     return($"{parent.Path()}/statuses");
 }
コード例 #4
0
 public string Path()
 {
     return($"{parent.Path()}/opt-outs");
 }