/// <summary>
 /// The following API call can be used to retrieve state vectors for your own sensors without rate limitations. Note that authentication is required for this operation, otherwise you will get a 403 - Forbidden.
 /// </summary>
 public async Task <OwnStateVectorsResponseModel> GetOwnStateVectorsAsync(OwnStateVectorsRequestModel requestModel)
 {
     return(await GetAsync <OwnStateVectorsRequestModel, OwnStateVectorsCommand, OwnStateVectorsResponseModel>(requestModel));
 }
 /// <summary>
 /// The following API call can be used to retrieve state vectors for your own sensors without rate limitations. Note that authentication is required for this operation, otherwise you will get a 403 - Forbidden.
 /// </summary>
 public OwnStateVectorsResponseModel GetOwnStateVectors(OwnStateVectorsRequestModel requestModel)
 {
     return(GetOwnStateVectorsAsync(requestModel).Result);
 }