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

com.github.GBSEcom.simple.ClientContext Maven / Gradle / Ivy

package com.github.GBSEcom.simple;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.val;

@AllArgsConstructor
@Getter
public class ClientContext {

	private final com.github.GBSEcom.client.ApiClient client;

	private final MerchantCredentials credentials;

	public static ClientContext create(final MerchantCredentials creds) {
		val apiClient = new com.github.GBSEcom.client.ApiClient();
		return new ClientContext(apiClient, creds);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy