Skip to content

Commit

Permalink
feat: add cookies_url field to authorization
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-martins-mx committed Jul 2, 2024
1 parent 2454c55 commit dcfa46d
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import java.util.List;

import com.google.gson.annotations.SerializedName;
import com.mx.path.model.mdx.model.MdxBase;
import com.mx.path.model.mdx.model.challenges.Challenge;

Expand All @@ -10,6 +11,8 @@ public class Authorization extends MdxBase<Authorization> {
private String accountId;
private List<Challenge> challenges;
private NameValuePair[] cookies;
@SerializedName("cookies_url")
private String cookiesUrl;
private String deviceId;
private Long expiresAt;
private NameValuePair[] headers;
Expand Down Expand Up @@ -47,6 +50,14 @@ public final void setCookies(NameValuePair[] newCookies) {
this.cookies = newCookies;
}

public final String getCookiesUrl() {
return cookiesUrl;
}

public final void setCookiesUrl(String cookiesUrl) {
this.cookiesUrl = cookiesUrl;
}

public final String getDeviceId() {
return deviceId;
}
Expand Down

0 comments on commit dcfa46d

Please sign in to comment.