/// <summary>
 /// Add a tokenized card to this payment profile
 /// </summary>
 /// <returns>The card.</returns>
 public ProfileResponse AddCard(ProfilesAPI api, Token token)
 {
     return(api.AddCard(Id, token));
 }
 /// <summary>
 /// Add a card to this payment profile
 /// </summary>
 /// <returns>The card.</returns>
 public ProfileResponse AddCard(ProfilesAPI api, Card card)
 {
     return(api.AddCard(Id, card));
 }