Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package com.yoti.api.client.docs.session.retrieve;

import com.fasterxml.jackson.annotation.JsonProperty;

public class CompanyProfileResponse {

@JsonProperty("company_name")
private String companyName;

public String getCompanyName() {
return companyName;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ public class GetSessionResult {
@JsonProperty("session_id")
private String sessionId;

@JsonProperty("organisation_name")
private String organisationName;

@JsonProperty("company_profile")
private CompanyProfileResponse companyProfileResponse;

@JsonProperty("user_tracking_id")
private String userTrackingId;

Expand Down Expand Up @@ -61,6 +67,14 @@ public String getSessionId() {
return sessionId;
}

public String getOrganisationName() {
return organisationName;
}

public CompanyProfileResponse getCompanyProfile() {
return companyProfileResponse;
}

public String getUserTrackingId() {
return userTrackingId;
}
Expand Down
Loading