dataplane_sdk/core/model/participant.rs
1// Copyright (c) 2026 Metaform Systems, Inc
2//
3// This program and the accompanying materials are made available under the
4// terms of the Apache License, Version 2.0 which is available at
5// https://www.apache.org/licenses/LICENSE-2.0
6//
7// SPDX-License-Identifier: Apache-2.0
8//
9// Contributors:
10// Metaform Systems, Inc. - initial API and implementation
11//
12
13use bon::Builder;
14
15#[derive(Debug, Clone, Builder)]
16#[builder(on(String, into))]
17pub struct ParticipantContext {
18 pub id: String,
19}