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

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

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

public enum FulfillmentService {

	MANUAL("manual");

	private final String value;

	private FulfillmentService(final String value) {
		this.value = value;
	}

	@Override
	public String toString() {
		return value;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy