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

com.global.api.entities.TokenizationData Maven / Gradle / Ivy

There is a newer version: 14.2.3
Show newest version
package com.global.api.entities;

import lombok.Getter;
import lombok.Setter;

public class TokenizationData {
    @Getter @Setter
    private String token;
    @Getter @Setter
    private String merchantId;
    @Getter @Setter
    private String expiry;

    public static TokenizationData setTokenizedData(String token, String merchantId){
        TokenizationData rvalue = new TokenizationData();
        rvalue.setToken(token);
        rvalue.setMerchantId(merchantId);
        return rvalue;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy