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
/*
* Stedi Healthcare Claims
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 2025-03-07
* Contact: healthcare@stedi.com
* Generated by: https://openapi-generator.tech
*/
use crate::claims::models;
use serde::{Deserialize, Serialize};
/// SubmitClaimAttachmentRawX12ResponseContent : Response from submitting a raw X12 claim attachment
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct SubmitClaimAttachmentRawX12ResponseContent {
/// Information about the claim attachment.
#[serde(rename = "claimAttachmentReference", skip_serializing_if = "Option::is_none")]
pub claim_attachment_reference: Option<Box<models::ClaimAttachmentReference>>,
/// Metadata from Stedi about the request.
#[serde(rename = "meta", skip_serializing_if = "Option::is_none")]
pub meta: Option<Box<models::AttachmentsResponseMetadata>>,
/// An ID for the payer you identified in the related transaction. This value may differ from the `tradingPartnerServiceId` you submitted in the original claim request because it reflects the payer's internal concept of their ID, not necessarily the ID Stedi uses to route requests to this payer.
#[serde(rename = "tradingPartnerServiceId", skip_serializing_if = "Option::is_none")]
pub trading_partner_service_id: Option<String>,
}
impl SubmitClaimAttachmentRawX12ResponseContent {
/// Response from submitting a raw X12 claim attachment
pub fn new() -> SubmitClaimAttachmentRawX12ResponseContent {
SubmitClaimAttachmentRawX12ResponseContent {
claim_attachment_reference: None,
meta: None,
trading_partner_service_id: None,
}
}
}