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
/*
* 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};
/// ClaimPaymentEnrollmentProcess : Details about the enrollment process for Electronic Remittance Advice (ERAs).
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ClaimPaymentEnrollmentProcess {
/// Whether this payer supports specifying a requested effective date for transaction enrollments. - If set to `SUPPORTED`, Stedi will process [transaction enrollment requests](https://www.stedi.com/docs/healthcare/api-reference/post-enrollment-create-enrollment) for this payer according to their specified `requestedEffectiveDate`. - This property is only returned when Stedi can determine whether the payer supports requested effective dates.
#[serde(rename = "requestedEffectiveDate", skip_serializing_if = "Option::is_none")]
pub requested_effective_date: Option<models::RequestedEffectiveDate>,
/// Aggregation types this payer supports for 835 Electronic Remittance Advice (ERA) transactions. Payers can aggregate by the provider's NPI, tax ID (TIN), or both. - You can use this information to specify an `aggregationPreference` when submitting ERA enrollment requests. - This property is only returned when Stedi can determine the payer's supported aggregation types.
#[serde(rename = "supportedAggregationPreferences", skip_serializing_if = "Option::is_none")]
pub supported_aggregation_preferences: Option<Vec<models::SupportedAggregationType>>,
#[serde(rename = "timeframe", skip_serializing_if = "Option::is_none")]
pub timeframe: Option<models::EnrollmentProcessTimeframe>,
#[serde(rename = "type", skip_serializing_if = "Option::is_none")]
pub r#type: Option<models::EnrollmentProcessType>,
}
impl ClaimPaymentEnrollmentProcess {
/// Details about the enrollment process for Electronic Remittance Advice (ERAs).
pub fn new() -> ClaimPaymentEnrollmentProcess {
ClaimPaymentEnrollmentProcess {
requested_effective_date: None,
supported_aggregation_preferences: None,
timeframe: None,
r#type: None,
}
}
}