PayPal.Api.CreditCard.Delete C# (CSharp) Method

Delete() public method

Delete the Credit Card resource for the given identifier.
public Delete ( APIContext apiContext ) : void
apiContext APIContext APIContext used for the API call.
return void
        public void Delete(APIContext apiContext)
        {
            CreditCard.Delete(apiContext, this.id);
        }

Same methods

CreditCard::Delete ( APIContext apiContext, string creditCardId ) : void

Usage Example

示例#1
0
 /// <summary>
 /// Delete the Credit Card resource for the given identifier.
 /// </summary>
 /// <param name="apiContext">APIContext used for the API call.</param>
 public void Delete(APIContext apiContext)
 {
     CreditCard.Delete(apiContext, this.id);
 }