marlowe_client 0.0.5

HTTP client for the Marlowe Runtime REST API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
 * Marlowe Runtime REST API
 *
 * REST API for Marlowe Runtime
 *
 * The version of the OpenAPI document: 0.0.5.1
 *
 * Generated by: https://openapi-generator.tech
 */

/// Party : A participant in a contract

#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
#[serde(untagged)]
pub enum Party {
    PartyRoleName(crate::models::PartyRoleName),
    PartyAddress(crate::models::PartyAddress),
}