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

com.logicommerce.sdk.models.payment.PaymentDataFormImpl Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.logicommerce.sdk.models.payment;

import java.util.List;
import com.logicommerce.sdk.models.Param;

/**
 * 

PaymentDataFormImpl class.

* * @author Logicommerce * @since 1.0.16 */ public class PaymentDataFormImpl implements PaymentDataForm { private String method; private List params; private String url; /** {@inheritDoc} */ @Override public String getMethod() { return method; } /** {@inheritDoc} */ @Override public List getParams() { return params; } /** {@inheritDoc} */ @Override public String getUrl() { return url; } /** *

Setter for the field method.

* * @param method a {@link java.lang.String} object */ public void setMethod(String method) { this.method = method; } /** *

Setter for the field params.

* * @param params a {@link java.util.List} object */ public void setParams(List params) { this.params = params; } /** *

Setter for the field url.

* * @param url a {@link java.lang.String} object */ public void setUrl(String url) { this.url = url; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy