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

org.springframework.social.partnercenter.api.profile.BillingProfile Maven / Gradle / Ivy

Go to download

A provider extension for Spring Social to enable connectivity with Microsoft and an API binding for Microsoft's Partner Center API.

There is a newer version: 10.11.0
Show newest version
package org.springframework.social.partnercenter.api.profile;

import java.util.Map;

import org.springframework.social.partnercenter.api.Link;
import org.springframework.social.partnercenter.api.customer.Address;

import com.fasterxml.jackson.annotation.JsonInclude;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class BillingProfile {
	private String companyName;
	private Address address;
	private Contact primaryContact;
	private String purchaseOrderNumber;
	private String taxId;
	private String billingCurrency;
	private String profileType;
	private Map links;
	private Map attributes;

	public String getCompanyName() {
		return companyName;
	}

	public BillingProfile setCompanyName(String companyName) {
		this.companyName = companyName;
		return this;
	}

	public Address getAddress() {
		return address;
	}

	public BillingProfile setAddress(Address address) {
		this.address = address;
		return this;
	}

	public Contact getPrimaryContact() {
		return primaryContact;
	}

	public BillingProfile setPrimaryContact(Contact primaryContact) {
		this.primaryContact = primaryContact;
		return this;
	}

	public String getPurchaseOrderNumber() {
		return purchaseOrderNumber;
	}

	public BillingProfile setPurchaseOrderNumber(String purchaseOrderNumber) {
		this.purchaseOrderNumber = purchaseOrderNumber;
		return this;
	}

	public String getTaxId() {
		return taxId;
	}

	public BillingProfile setTaxId(String taxId) {
		this.taxId = taxId;
		return this;
	}

	public String getBillingCurrency() {
		return billingCurrency;
	}

	public BillingProfile setBillingCurrency(String billingCurrency) {
		this.billingCurrency = billingCurrency;
		return this;
	}

	public String getProfileType() {
		return profileType;
	}

	public BillingProfile setProfileType(String profileType) {
		this.profileType = profileType;
		return this;
	}

	public Map getLinks() {
		return links;
	}

	public BillingProfile setLinks(Map links) {
		this.links = links;
		return this;
	}

	public Map getAttributes() {
		return attributes;
	}

	public BillingProfile setAttributes(Map attributes) {
		this.attributes = attributes;
		return this;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy