autogen-stedi 0.3.2

Auto-generated, strongly-typed Rust client for the Stedi APIs
Documentation
/*
 * 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};

/// ResponseMeta : Metadata from Stedi about the request.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ResponseMeta {
    /// 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 ResponseMeta {
    /// Metadata from Stedi about the request.
    pub fn new() -> ResponseMeta {
        ResponseMeta {
            application_mode: None,
            biller_id: None,
            sender_id: None,
            submitter_id: None,
            trace_id: None,
        }
    }
}