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

io.gitee.putaoo.easypay.domain.wx.AccessToken Maven / Gradle / Ivy

package io.gitee.putaoo.easypay.domain.wx;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Data;

import java.io.Serializable;

@Data
public class AccessToken implements Serializable {

    @JsonProperty(value = "expires_in")
    private Integer expire;
    @JsonProperty(value = "access_token")
    private String token;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy