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

io.fruitful.ecomerce.entities.MagentoCustomerToken Maven / Gradle / Ivy

There is a newer version: 1.2
Show newest version
package io.fruitful.ecomerce.entities;

import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.Date;

@Data
@NoArgsConstructor
public class MagentoCustomerToken {

    private String magentoToken;

    private Date expiredTime;

    private String ekoUserId;

    private Long magentoCustomerId;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy