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

org.schema.ProgramMembership Maven / Gradle / Ivy

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

/**
 * Schema.org/ProgramMembership
 * Used to describe membership in a loyalty programs (e.g. "StarAliance"), traveler clubs (e.g. "AAA"), purchase clubs ("Safeway Club"), etc.
 *
 * @author schema.org
 * @class ProgramMembership
 * @module org.schema
 * @extends Intangible
 */
public class ProgramMembership extends Intangible {
	/**
	 * Schema.org/membershipNumber
	 * A unique identifier for the membership.
	 *
	 * @property membershipNumber
	 * @type Text
	 */
	public String membershipNumber;
	/**
	 * Schema.org/members
	 * A member of this organization.
	 *
	 * @property members
	 * @type Organization
	 */
	public Organization members;
	/**
	 * Schema.org/member
	 * A member of an Organization or a ProgramMembership. Organizations can be members of organizations; ProgramMembership is typically for individuals.
	 *
	 * @property member
	 * @type Organization
	 */
	public Organization member;
	/**
	 * Schema.org/hostingOrganization
	 * The organization (airline, travelers' club, etc.) the membership is made with.
	 *
	 * @property hostingOrganization
	 * @type Organization
	 */
	public Organization hostingOrganization;
	/**
	 * Schema.org/programName
	 * The program providing the membership.
	 *
	 * @property programName
	 * @type Text
	 */
	public String programName;

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy