interface DemioNodeParameters {
additionalFields?:
| { active?: boolean; date_id?: string }
| {
company?: string;
customFieldsUi?: {
customFieldsValues: {
fieldId?: string;
value?: string;
}[];
};
date_id?: string;
gdpr?: string;
last_name?: string;
phone_number?: string;
ref_url?: string;
website?: string;
};
dateId?: string;
email?: string;
eventId?: string;
filters?: | {
type?: "upcoming"
| "automated"
| "past";
}
| {
status?: | "attended"
| "banned"
| "completed"
| "did-not-attend"
| "left-early";
};
firstName?: string;
limit?: number;
operation?: "get"
| "getAll"
| "register";
resource?: "event" | "report";
returnAll?: boolean;
}
Properties§
Source§readonly additional Fields?:
| { active?: boolean; date_id?: string }
| {
company?: string;
customFieldsUi?: {
customFieldsValues: {
fieldId?: string;
value?: string;
}[];
};
date_id?: string;
gdpr?: string;
last_name?: string;
phone_number?: string;
ref_url?: string;
website?: string;
}
readonly additional Fields?:
| { active?: boolean; date_id?: string }
| {
company?: string;
customFieldsUi?: {
customFieldsValues: {
fieldId?: string;
value?: string;
}[];
};
date_id?: string;
gdpr?: string;
last_name?: string;
phone_number?: string;
ref_url?: string;
website?: string;
}
Source§readonly date Id?: string
readonly date Id?: string
ID of the session. Choose from the list, or specify an ID using an expression. Type options: {"loadOptionsMethod":"getEventSessions","loadOptionsDependsOn":["eventId"]}
Source§readonly filters?:
| { type?: "upcoming"
| "automated"
| "past" }
| {
status?:
| "attended"
| "banned"
| "completed"
| "did-not-attend"
| "left-early";
}
readonly filters?:
| { type?: "upcoming"
| "automated"
| "past" }
| {
status?:
| "attended"
| "banned"
| "completed"
| "did-not-attend"
| "left-early";
}
Default: {}
Default: {}