File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed
proto/services/connect/v1 Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff 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
194201message 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
You can’t perform that action at this time.
0 commit comments