Skip to content

Commit 79e6cb3

Browse files
mewmbalucasamonrc
andauthored
hackathon: Add demo branding parameters to create session call ( (#1613)
Co-authored-by: lucasamonrc <[email protected]>
1 parent 8221146 commit 79e6cb3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

proto/services/connect/v1/connect.proto

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,12 +190,22 @@ message NormalizedGovernmentIdData {
190190
optional string expiration_date = 8 [json_name = "expirationDate"];
191191
}
192192

193+
// Information about a Relying Party used for demo purposes
194+
message DemoRelyingParty {
195+
string display_name = 1 [json_name = "displayName"];
196+
string logo_url = 2 [json_name = "logoUrl"];
197+
string primary_color = 3 [json_name = "primaryColor"];
198+
}
199+
193200
// Request to create an Identity Verification Session
194201
message CreateSessionRequest {
195202
// Array of verifications to perform
196203
repeated RequestedVerification verifications = 1;
197204
// Debugging information used to help diagnose issues
198205
map<string, string> debug_information = 2 [json_name = "debugInformation"];
206+
// Information about the Relying Party used for demo purposes.
207+
// This is only to be used if the demo flag is set to true in the debug information.
208+
optional DemoRelyingParty demo_rp = 3 [json_name = "demoRp"];
199209
}
200210

201211
// A verification to perform in an IDV flow

0 commit comments

Comments
 (0)