| 224 | #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] |
| 225 | #[serde(deny_unknown_fields)] |
| 226 | pub struct Proof { |
| 227 | #[serde(rename = "@type")] |
| 228 | pub type_: String, |
| 229 | pub cryptosuite: String, |
| 230 | #[serde(rename = "verificationMethod")] |
| 231 | pub verification_method: String, |
| 232 | #[serde(rename = "proofPurpose")] |
| 233 | pub proof_purpose: String, |
| 234 | #[serde(rename = "proofValue")] |
| 235 | pub proof_value: String, |
| 236 | } |
| 237 | |
| 238 | /// The default intent classification. An ordinary unit of work is a `"feature"`. |
| 239 | pub fn default_kind() -> String { |
no outgoing calls
no test coverage detected