Skip to content

Commit

Permalink
hackathon: Add demo branding parameters to create session call ( (#1613)
Browse files Browse the repository at this point in the history
Co-authored-by: lucasamonrc <[email protected]>
  • Loading branch information
mewmba and lucasamonrc authored Mar 27, 2024
1 parent 8221146 commit 79e6cb3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions proto/services/connect/v1/connect.proto
Original file line number Diff line number Diff line change
Expand Up @@ -190,12 +190,22 @@ message NormalizedGovernmentIdData {
optional string expiration_date = 8 [json_name = "expirationDate"];
}

// Information about a Relying Party used for demo purposes
message DemoRelyingParty {
string display_name = 1 [json_name = "displayName"];
string logo_url = 2 [json_name = "logoUrl"];
string primary_color = 3 [json_name = "primaryColor"];
}

// Request to create an Identity Verification Session
message CreateSessionRequest {
// Array of verifications to perform
repeated RequestedVerification verifications = 1;
// Debugging information used to help diagnose issues
map<string, string> debug_information = 2 [json_name = "debugInformation"];
// Information about the Relying Party used for demo purposes.
// This is only to be used if the demo flag is set to true in the debug information.
optional DemoRelyingParty demo_rp = 3 [json_name = "demoRp"];
}

// A verification to perform in an IDV flow
Expand Down

0 comments on commit 79e6cb3

Please sign in to comment.