/** * This code was auto-generated by a Codezu. * * Changes to this file may cause incorrect behavior and will be lost if * the code is regenerated. */ package com.mozu.api.contracts.paymentservice; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonIgnoreProperties; import org.joda.time.DateTime; import java.io.IOException; import java.lang.ClassNotFoundException; /** * Properties of a supported credit card for the site's payment gateway. */ @JsonIgnoreProperties(ignoreUnknown = true) public class SupportedCard implements Serializable { // Default Serial Version UID private static final long serialVersionUID = 1L; /** * Company-defined friendly name that identifies the supported card. */ protected String friendlyName; public String getFriendlyName() { return this.friendlyName; } public void setFriendlyName(String friendlyName) { this.friendlyName = friendlyName; } /** * The card type of the supported payment card, such as Visa or Amex. */ protected String type; public String getType() { return this.type; } public void setType(String type) { this.type = type; } }