Exemple #1
0
 // Operation: Get State List
 // Http Get /restapi/v1.0/dictionary/state
 public async Task<RingCentral.GetStateListResponse> List(ListStatesParameters queryParams = null)
 {
     return await rc.Get<RingCentral.GetStateListResponse>(this.Path(false), queryParams);
 }
Exemple #2
0
 /// <summary>
 /// Operation: Get States List
 /// HTTP Method: GET
 /// Endpoint: /restapi/v1.0/dictionary/state
 /// Rate Limit Group: Light
 /// App Permission: undefined
 /// User Permission: undefined
 /// </summary>
 public async Task <RingCentral.GetStateListResponse> List(ListStatesParameters queryParams    = null,
                                                           CancellationToken?cancellationToken = null)
 {
     return(await rc.Get <RingCentral.GetStateListResponse>(this.Path(false), queryParams, cancellationToken));
 }
Exemple #3
0
 /// <summary>
 ///     Returns all the states of a certain country
 ///     HTTP Method: get
 ///     Endpoint: /restapi/{apiVersion}/dictionary/state
 ///     Rate Limit Group: Light
 /// </summary>
 public async Task <GetStateListResponse> List(ListStatesParameters queryParams    = null,
                                               RestRequestConfig restRequestConfig = null)
 {
     return(await rc.Get <GetStateListResponse>(Path(false), queryParams, restRequestConfig));
 }