Skip to content

Commit

Permalink
Add json property for GithubAccessTokenResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
ndkhanh-axonivy committed Jul 18, 2024
1 parent 044edcf commit 5fb590f
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.axonivy.market.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
Expand All @@ -10,7 +11,12 @@
@NoArgsConstructor
@AllArgsConstructor
public class GitHubAccessTokenResponse {
@JsonProperty("error")
private String error;

@JsonProperty("error_description")
private String errorDescription;

@JsonProperty("access_token")
private String accessToken;
}

0 comments on commit 5fb590f

Please sign in to comment.