tmflib 0.1.37

Interface library for processing TMF payloads
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Product Order Milestone Module

use serde::{Deserialize, Serialize};

/// Product Order Milestones
#[derive(Clone, Debug, Default, Deserialize, Serialize)]
pub struct Milestone {
    description: String,
    id: String,
    message: String,
    milestone_date: String,
    name: String,
    status: String,
}