/// <summary>
        /// Validates an individual batch API call response from the list that was received in the batch API call
        /// </summary>
        /// <typeparam name="T">The type to convert the BatchApiResponse's body to (the type that the individual API call returns)</typeparam>
        /// <param name="response">The individual batch API call</param>
        private void ValidateIndividualBatchedApiCallResponse <T>(BatchApiResponse response)
        {
            var responseBody = response.GetBody <T>();

            SendwithusClientTest.ValidateResponse(responseBody);
        }