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
/*
* Stedi Healthcare
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2024-04-01
* Contact: healthcare@stedi.com
* Generated by: https://openapi-generator.tech
*/
use crate::healthcare::models;
use serde::{Deserialize, Serialize};
/// InstitutionalResponseMeta : Metadata from Stedi about the request.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct InstitutionalResponseMeta {
/// Indicates where this request can be found for support.
#[serde(rename = "applicationMode", skip_serializing_if = "Option::is_none")]
pub application_mode: Option<String>,
/// The biller ID assigned to this request.
#[serde(rename = "billerId", skip_serializing_if = "Option::is_none")]
pub biller_id: Option<String>,
/// The sender ID assigned to this request.
#[serde(rename = "senderId", skip_serializing_if = "Option::is_none")]
pub sender_id: Option<String>,
/// The submitter ID assigned to this request.
#[serde(rename = "submitterId", skip_serializing_if = "Option::is_none")]
pub submitter_id: Option<String>,
/// The file execution ID, a unique identifier assigned to the processed file within the Stedi platform.
#[serde(rename = "traceId", skip_serializing_if = "Option::is_none")]
pub trace_id: Option<String>,
}
impl InstitutionalResponseMeta {
/// Metadata from Stedi about the request.
pub fn new() -> InstitutionalResponseMeta {
InstitutionalResponseMeta {
application_mode: None,
biller_id: None,
sender_id: None,
submitter_id: None,
trace_id: None,
}
}
}