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

com.cleeng.api.domain.GenerateCheckoutUrlParams Maven / Gradle / Ivy

package com.cleeng.api.domain;

import java.io.Serializable;

public class GenerateCheckoutUrlParams implements Serializable {

    public String publisherToken;

    public String customerEmail;

    public FlowDescription flowDescription;

    public GenerateCheckoutUrlParams(String publisherToken, String customerEmail, FlowDescription flowDescription) {

        this.publisherToken = publisherToken;
        this.customerEmail = customerEmail;
        this.flowDescription = flowDescription;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy