stripe_shared/
account_capability_requirements.rs

1#[derive(Clone, Debug)]
2#[cfg_attr(feature = "serialize", derive(serde::Serialize))]
3#[cfg_attr(feature = "deserialize", derive(serde::Deserialize))]
4pub struct AccountCapabilityRequirements {
5    /// Fields that are due and can be satisfied by providing the corresponding alternative fields instead.
6    pub alternatives: Option<Vec<stripe_shared::AccountRequirementsAlternative>>,
7    /// Date by which the fields in `currently_due` must be collected to keep the capability enabled for the account.
8    /// These fields may disable the capability sooner if the next threshold is reached before they are collected.
9    pub current_deadline: Option<stripe_types::Timestamp>,
10    /// Fields that need to be collected to keep the capability enabled.
11    /// If not collected by `current_deadline`, these fields appear in `past_due` as well, and the capability is disabled.
12    pub currently_due: Vec<String>,
13    /// Description of why the capability is disabled.
14    /// [Learn more about handling verification issues](https://stripe.com/docs/connect/handling-api-verification).
15    pub disabled_reason: Option<AccountCapabilityRequirementsDisabledReason>,
16    /// Fields that are `currently_due` and need to be collected again because validation or verification failed.
17    pub errors: Vec<stripe_shared::AccountRequirementsError>,
18    /// Fields you must collect when all thresholds are reached.
19    /// As they become required, they appear in `currently_due` as well, and `current_deadline` becomes set.
20    pub eventually_due: Vec<String>,
21    /// Fields that weren't collected by `current_deadline`.
22    /// These fields need to be collected to enable the capability on the account.
23    pub past_due: Vec<String>,
24    /// Fields that might become required depending on the results of verification or review.
25    /// It's an empty array unless an asynchronous verification is pending.
26    /// If verification fails, these fields move to `eventually_due`, `currently_due`, or `past_due`.
27    /// Fields might appear in `eventually_due`, `currently_due`, or `past_due` and in `pending_verification` if verification fails but another verification is still pending.
28    pub pending_verification: Vec<String>,
29}
30#[doc(hidden)]
31pub struct AccountCapabilityRequirementsBuilder {
32    alternatives: Option<Option<Vec<stripe_shared::AccountRequirementsAlternative>>>,
33    current_deadline: Option<Option<stripe_types::Timestamp>>,
34    currently_due: Option<Vec<String>>,
35    disabled_reason: Option<Option<AccountCapabilityRequirementsDisabledReason>>,
36    errors: Option<Vec<stripe_shared::AccountRequirementsError>>,
37    eventually_due: Option<Vec<String>>,
38    past_due: Option<Vec<String>>,
39    pending_verification: Option<Vec<String>>,
40}
41
42#[allow(
43    unused_variables,
44    irrefutable_let_patterns,
45    clippy::let_unit_value,
46    clippy::match_single_binding,
47    clippy::single_match
48)]
49const _: () = {
50    use miniserde::de::{Map, Visitor};
51    use miniserde::json::Value;
52    use miniserde::{make_place, Deserialize, Result};
53    use stripe_types::miniserde_helpers::FromValueOpt;
54    use stripe_types::{MapBuilder, ObjectDeser};
55
56    make_place!(Place);
57
58    impl Deserialize for AccountCapabilityRequirements {
59        fn begin(out: &mut Option<Self>) -> &mut dyn Visitor {
60            Place::new(out)
61        }
62    }
63
64    struct Builder<'a> {
65        out: &'a mut Option<AccountCapabilityRequirements>,
66        builder: AccountCapabilityRequirementsBuilder,
67    }
68
69    impl Visitor for Place<AccountCapabilityRequirements> {
70        fn map(&mut self) -> Result<Box<dyn Map + '_>> {
71            Ok(Box::new(Builder {
72                out: &mut self.out,
73                builder: AccountCapabilityRequirementsBuilder::deser_default(),
74            }))
75        }
76    }
77
78    impl MapBuilder for AccountCapabilityRequirementsBuilder {
79        type Out = AccountCapabilityRequirements;
80        fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
81            Ok(match k {
82                "alternatives" => Deserialize::begin(&mut self.alternatives),
83                "current_deadline" => Deserialize::begin(&mut self.current_deadline),
84                "currently_due" => Deserialize::begin(&mut self.currently_due),
85                "disabled_reason" => Deserialize::begin(&mut self.disabled_reason),
86                "errors" => Deserialize::begin(&mut self.errors),
87                "eventually_due" => Deserialize::begin(&mut self.eventually_due),
88                "past_due" => Deserialize::begin(&mut self.past_due),
89                "pending_verification" => Deserialize::begin(&mut self.pending_verification),
90
91                _ => <dyn Visitor>::ignore(),
92            })
93        }
94
95        fn deser_default() -> Self {
96            Self {
97                alternatives: Deserialize::default(),
98                current_deadline: Deserialize::default(),
99                currently_due: Deserialize::default(),
100                disabled_reason: Deserialize::default(),
101                errors: Deserialize::default(),
102                eventually_due: Deserialize::default(),
103                past_due: Deserialize::default(),
104                pending_verification: Deserialize::default(),
105            }
106        }
107
108        fn take_out(&mut self) -> Option<Self::Out> {
109            let (
110                Some(alternatives),
111                Some(current_deadline),
112                Some(currently_due),
113                Some(disabled_reason),
114                Some(errors),
115                Some(eventually_due),
116                Some(past_due),
117                Some(pending_verification),
118            ) = (
119                self.alternatives.take(),
120                self.current_deadline,
121                self.currently_due.take(),
122                self.disabled_reason,
123                self.errors.take(),
124                self.eventually_due.take(),
125                self.past_due.take(),
126                self.pending_verification.take(),
127            )
128            else {
129                return None;
130            };
131            Some(Self::Out {
132                alternatives,
133                current_deadline,
134                currently_due,
135                disabled_reason,
136                errors,
137                eventually_due,
138                past_due,
139                pending_verification,
140            })
141        }
142    }
143
144    impl<'a> Map for Builder<'a> {
145        fn key(&mut self, k: &str) -> Result<&mut dyn Visitor> {
146            self.builder.key(k)
147        }
148
149        fn finish(&mut self) -> Result<()> {
150            *self.out = self.builder.take_out();
151            Ok(())
152        }
153    }
154
155    impl ObjectDeser for AccountCapabilityRequirements {
156        type Builder = AccountCapabilityRequirementsBuilder;
157    }
158
159    impl FromValueOpt for AccountCapabilityRequirements {
160        fn from_value(v: Value) -> Option<Self> {
161            let Value::Object(obj) = v else {
162                return None;
163            };
164            let mut b = AccountCapabilityRequirementsBuilder::deser_default();
165            for (k, v) in obj {
166                match k.as_str() {
167                    "alternatives" => b.alternatives = FromValueOpt::from_value(v),
168                    "current_deadline" => b.current_deadline = FromValueOpt::from_value(v),
169                    "currently_due" => b.currently_due = FromValueOpt::from_value(v),
170                    "disabled_reason" => b.disabled_reason = FromValueOpt::from_value(v),
171                    "errors" => b.errors = FromValueOpt::from_value(v),
172                    "eventually_due" => b.eventually_due = FromValueOpt::from_value(v),
173                    "past_due" => b.past_due = FromValueOpt::from_value(v),
174                    "pending_verification" => b.pending_verification = FromValueOpt::from_value(v),
175
176                    _ => {}
177                }
178            }
179            b.take_out()
180        }
181    }
182};
183/// Description of why the capability is disabled.
184/// [Learn more about handling verification issues](https://stripe.com/docs/connect/handling-api-verification).
185#[derive(Copy, Clone, Eq, PartialEq)]
186pub enum AccountCapabilityRequirementsDisabledReason {
187    Other,
188    PausedInactivity,
189    PendingOnboarding,
190    PendingReview,
191    PlatformDisabled,
192    PlatformPaused,
193    RejectedInactivity,
194    RejectedOther,
195    RejectedUnsupportedBusiness,
196    RequirementsFieldsNeeded,
197}
198impl AccountCapabilityRequirementsDisabledReason {
199    pub fn as_str(self) -> &'static str {
200        use AccountCapabilityRequirementsDisabledReason::*;
201        match self {
202            Other => "other",
203            PausedInactivity => "paused.inactivity",
204            PendingOnboarding => "pending.onboarding",
205            PendingReview => "pending.review",
206            PlatformDisabled => "platform_disabled",
207            PlatformPaused => "platform_paused",
208            RejectedInactivity => "rejected.inactivity",
209            RejectedOther => "rejected.other",
210            RejectedUnsupportedBusiness => "rejected.unsupported_business",
211            RequirementsFieldsNeeded => "requirements.fields_needed",
212        }
213    }
214}
215
216impl std::str::FromStr for AccountCapabilityRequirementsDisabledReason {
217    type Err = stripe_types::StripeParseError;
218    fn from_str(s: &str) -> Result<Self, Self::Err> {
219        use AccountCapabilityRequirementsDisabledReason::*;
220        match s {
221            "other" => Ok(Other),
222            "paused.inactivity" => Ok(PausedInactivity),
223            "pending.onboarding" => Ok(PendingOnboarding),
224            "pending.review" => Ok(PendingReview),
225            "platform_disabled" => Ok(PlatformDisabled),
226            "platform_paused" => Ok(PlatformPaused),
227            "rejected.inactivity" => Ok(RejectedInactivity),
228            "rejected.other" => Ok(RejectedOther),
229            "rejected.unsupported_business" => Ok(RejectedUnsupportedBusiness),
230            "requirements.fields_needed" => Ok(RequirementsFieldsNeeded),
231            _ => Err(stripe_types::StripeParseError),
232        }
233    }
234}
235impl std::fmt::Display for AccountCapabilityRequirementsDisabledReason {
236    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
237        f.write_str(self.as_str())
238    }
239}
240
241impl std::fmt::Debug for AccountCapabilityRequirementsDisabledReason {
242    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
243        f.write_str(self.as_str())
244    }
245}
246#[cfg(feature = "serialize")]
247impl serde::Serialize for AccountCapabilityRequirementsDisabledReason {
248    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
249    where
250        S: serde::Serializer,
251    {
252        serializer.serialize_str(self.as_str())
253    }
254}
255impl miniserde::Deserialize for AccountCapabilityRequirementsDisabledReason {
256    fn begin(out: &mut Option<Self>) -> &mut dyn miniserde::de::Visitor {
257        crate::Place::new(out)
258    }
259}
260
261impl miniserde::de::Visitor for crate::Place<AccountCapabilityRequirementsDisabledReason> {
262    fn string(&mut self, s: &str) -> miniserde::Result<()> {
263        use std::str::FromStr;
264        self.out = Some(
265            AccountCapabilityRequirementsDisabledReason::from_str(s)
266                .map_err(|_| miniserde::Error)?,
267        );
268        Ok(())
269    }
270}
271
272stripe_types::impl_from_val_with_from_str!(AccountCapabilityRequirementsDisabledReason);
273#[cfg(feature = "deserialize")]
274impl<'de> serde::Deserialize<'de> for AccountCapabilityRequirementsDisabledReason {
275    fn deserialize<D: serde::Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
276        use std::str::FromStr;
277        let s: std::borrow::Cow<'de, str> = serde::Deserialize::deserialize(deserializer)?;
278        Self::from_str(&s).map_err(|_| {
279            serde::de::Error::custom(
280                "Unknown value for AccountCapabilityRequirementsDisabledReason",
281            )
282        })
283    }
284}