1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* Hanzo Cloud API
*
* The Hanzo Cloud API as a customer calls it: every operation under /v1/ except the operator's admin product, relay routes, legacy spellings and capabilities still reached by flag. Tagged by product: the first path segment after /v1/.
*
* The version of the OpenAPI document: v1
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct RoundInput {
/// Name is the round's name on the cap table, e.g. \"Seed\". Required.
#[serde(rename = "name", skip_serializing_if = "Option::is_none")]
pub name: Option<String>,
/// PreMoneyValuation is the valuation the round prices off, before the new money.
#[serde(rename = "preMoneyValuation", skip_serializing_if = "Option::is_none")]
pub pre_money_valuation: Option<f64>,
/// PricePerShare is the per-share price of a priced round.
#[serde(rename = "pricePerShare", skip_serializing_if = "Option::is_none")]
pub price_per_share: Option<f64>,
/// RoundType is PRICED, SAFE or CONVERTIBLE_NOTE. Defaults to PRICED.
#[serde(rename = "roundType", skip_serializing_if = "Option::is_none")]
pub round_type: Option<String>,
/// ShareClassID is the cap table's share class the round issues into.
#[serde(rename = "shareClassId", skip_serializing_if = "Option::is_none")]
pub share_class_id: Option<String>,
/// TargetAmount is the amount the round is raising, recorded verbatim on the canonical cap table's rounds.create contract.
#[serde(rename = "targetAmount", skip_serializing_if = "Option::is_none")]
pub target_amount: Option<f64>,
}
impl RoundInput {
pub fn new() -> RoundInput {
RoundInput {
name: None,
pre_money_valuation: None,
price_per_share: None,
round_type: None,
share_class_id: None,
target_amount: None,
}
}
}