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

org.schema.PaymentChargeSpecification Maven / Gradle / Ivy

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

/**
 * Schema.org/PaymentChargeSpecification
 * The costs of settling the payment using a particular payment method.
 *
 * @author schema.org
 * @class PaymentChargeSpecification
 * @module org.schema
 * @extends PriceSpecification
 */
public class PaymentChargeSpecification extends PriceSpecification {
	/**
	 * Schema.org/appliesToPaymentMethod
	 * The payment method(s) to which the payment charge specification applies.
	 *
	 * @property appliesToPaymentMethod
	 * @type PaymentMethod
	 */
	public PaymentMethod appliesToPaymentMethod;
	/**
	 * Schema.org/appliesToDeliveryMethod
	 * The delivery method(s) to which the delivery charge or payment charge specification applies.
	 *
	 * @property appliesToDeliveryMethod
	 * @type DeliveryMethod
	 */
	public DeliveryMethod appliesToDeliveryMethod;

	/**
	 * Constructor, automatically sets @context and @type.
	 *
	 * @constructor
	 */
	public PaymentChargeSpecification() {
		context = "http://schema.org/";
		type = "PaymentChargeSpecification";
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy