Exemplo n.º 1
0
 /// <summary>
 /// The following API call can be used to retrieve any state vector of the OpenSky. Please note that rate limits apply for this call (see Limitations). For API calls without rate limitation, see Own State Vectors.
 /// </summary>
 public async Task <AllStateVectorsResponseModel> GetAllStateVectorsAsync(AllStateVectorsRequestModel requestModel)
 {
     return(await GetAsync <AllStateVectorsRequestModel, AllStateVectorsCommand, AllStateVectorsResponseModel>(requestModel));
 }
Exemplo n.º 2
0
 /// <summary>
 /// The following API call can be used to retrieve any state vector of the OpenSky. Please note that rate limits apply for this call (see Limitations). For API calls without rate limitation, see Own State Vectors.
 /// </summary>
 public AllStateVectorsResponseModel GetAllStateVectors(AllStateVectorsRequestModel requestModel)
 {
     return(GetAllStateVectorsAsync(requestModel).Result);
 }