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

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

package com.shopify.model;

import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;

@XmlRootElement
public class ShopifyAccessTokenRoot {

	private String accessToken;

	@XmlAttribute(name = "access_token")
	public String getAccessToken() {
		return accessToken;
	}

	public void setAccessToken(String accessToken) {
		this.accessToken = accessToken;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy