예제 #1
0
        public void DeleteRecipient_Test()
        {
            dynamic recipient = _client.CreateRecipient(_name, _type, email: _email, card: _card);
            dynamic response  = _client.DeleteRecipient(recipient.Id);

            Assert.NotNull(response);
            Assert.False(response.IsError);
            Assert.True(response.Deleted);
            Assert.Equal(recipient.Id, response.Id);
        }