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

com.shopify.model.ShopifyFulfillmentHold Maven / Gradle / Ivy

There is a newer version: 2.9.3
Show newest version
package com.shopify.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class ShopifyFulfillmentHold {

	private String reason;
	@XmlElement(name = "reason_notes")
	private String reasonNotes;

	public String getReason() {
		return reason;
	}

	public void setReason(String reason) {
		this.reason = reason;
	}

	public String getReasonNotes() {
		return reasonNotes;
	}

	public void setReasonNotes(String reasonNotes) {
		this.reasonNotes = reasonNotes;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy