/*
* Algod REST API.
*
* API endpoint for algod operations.
*
* The version of the OpenAPI document: 0.0.1
* Contact: contact@algorand.com
* Generated by: https://openapi-generator.tech
*/
#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct AddParticipationKey200Response {
/// encoding of the participation ID.
#[serde(rename = "partId")]
pub part_id: String,
}
impl AddParticipationKey200Response {
pub fn new(part_id: String) -> AddParticipationKey200Response {
AddParticipationKey200Response { part_id }
}
}