All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.schema.CreditCard Maven / Gradle / Ivy

There is a newer version: 3.1.8
Show newest version
package org.schema;

/**
 * Schema.org/CreditCard
 * A card payment method of a particular brand or name.  Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\n\nCommonly used values:\n\n* http://purl.org/goodrelations/v1#AmericanExpress\n* http://purl.org/goodrelations/v1#DinersClub\n* http://purl.org/goodrelations/v1#Discover\n* http://purl.org/goodrelations/v1#JCB\n* http://purl.org/goodrelations/v1#MasterCard\n* http://purl.org/goodrelations/v1#VISA
 *
 * @author schema.org
 * @class CreditCard
 * @module org.schema
 * @extends LoanOrCredit
 */
public class CreditCard extends LoanOrCredit {
	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public CreditCard() {
		context = "http://schema.org/";
		type = "CreditCard";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy