Ejemplo n.º 1
0
 /// <summary>
 /// Operation: Get Country List
 /// Http Get /restapi/v1.0/dictionary/country
 /// </summary>
 public async Task <RingCentral.GetCountryListResponse> List(ListCountriesParameters queryParams = null)
 {
     return(await rc.Get <RingCentral.GetCountryListResponse>(this.Path(false), queryParams));
 }
Ejemplo n.º 2
0
 /// <summary>
 ///     Returns all the countries available for calling.
 ///     HTTP Method: get
 ///     Endpoint: /restapi/{apiVersion}/dictionary/country
 ///     Rate Limit Group: Light
 /// </summary>
 public async Task <GetCountryListResponse> List(ListCountriesParameters queryParams = null,
                                                 RestRequestConfig restRequestConfig = null)
 {
     return(await rc.Get <GetCountryListResponse>(Path(false), queryParams, restRequestConfig));
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Operation: Get Country List
 /// HTTP Method: GET
 /// Endpoint: /restapi/v1.0/dictionary/country
 /// Rate Limit Group: Light
 /// App Permission: undefined
 /// User Permission: undefined
 /// </summary>
 public async Task <RingCentral.GetCountryListResponse> List(ListCountriesParameters queryParams = null,
                                                             CancellationToken?cancellationToken = null)
 {
     return(await rc.Get <RingCentral.GetCountryListResponse>(this.Path(false), queryParams, cancellationToken));
 }