Skip to content

Commit

Permalink
fix(extension): added missing class
Browse files Browse the repository at this point in the history
  • Loading branch information
zZHorizonZz committed Aug 18, 2024
1 parent 25a3702 commit ae4fe08
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package dev.cloudeko.zenei.extension.external.web.client;

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

@Data
@NoArgsConstructor
@AllArgsConstructor
public class ExternalProviderAccessToken {

@JsonProperty("access_token")
private String accessToken;

@JsonProperty("expires_in")
private Long expiresIn;

@JsonProperty("refresh_token")
private String refreshToken;

@JsonProperty("scope")
private String scope;

@JsonProperty("token_type")
private String tokenType;
}

0 comments on commit ae4fe08

Please sign in to comment.