From 294ce3fc5ac8d6874ba34418c7269cfb741bd7f9 Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Fri, 28 Mar 2025 17:46:53 +0100 Subject: [PATCH] add created_via to ResponseParticipant --- src/models/responses/ResponseParticipant.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/models/responses/ResponseParticipant.ts b/src/models/responses/ResponseParticipant.ts index b5ca124..5262f89 100644 --- a/src/models/responses/ResponseParticipant.ts +++ b/src/models/responses/ResponseParticipant.ts @@ -50,6 +50,12 @@ export abstract class ResponseParticipant implements IResponse { @IsString() email?: string; + /** + * how the participant got into the system + */ + @IsString() + created_via?: string; + /** * The participant's address. */