From 2e271bcd52f02ab7449cd15916b0afc86e8b0a90 Mon Sep 17 00:00:00 2001 From: Philipp Dormann Date: Fri, 28 Mar 2025 18:24:53 +0100 Subject: [PATCH] fix: add .created_via to ResponseParticipant constructor --- src/models/responses/ResponseParticipant.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/models/responses/ResponseParticipant.ts b/src/models/responses/ResponseParticipant.ts index 5262f89..9171466 100644 --- a/src/models/responses/ResponseParticipant.ts +++ b/src/models/responses/ResponseParticipant.ts @@ -70,6 +70,7 @@ export abstract class ResponseParticipant implements IResponse { public constructor(participant: Participant) { this.id = participant.id; this.firstname = participant.firstname; + this.created_via = participant.created_via; this.middlename = participant.middlename; this.lastname = participant.lastname; this.phone = participant.phone;