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
use serde::{Serialize, Deserialize};
use super::SecretServiceResourceScope;
/**Secret Store is an API that allows Stripe Apps developers to securely persist secrets for use by UI Extensions and app backends.
The primary resource in Secret Store is a `secret`. Other apps can't view secrets created by an app. Additionally, secrets are scoped to provide further permission control.
All Dashboard users and the app backend share `account` scoped secrets. Use the `account` scope for secrets that don't change per-user, like a third-party API key.
A `user` scoped secret is accessible by the app backend and one specific Dashboard user. Use the `user` scope for per-user secrets like per-user OAuth tokens, where different users might have different permissions.
Related guide: [Store data between page reloads](https://stripe.com/docs/stripe-apps/store-auth-data-custom-objects)*/
#[derive(Debug, Clone, Serialize, Deserialize, Default)]
pub struct AppsSecret {
///Time at which the object was created. Measured in seconds since the Unix epoch.
pub created: i64,
///If true, indicates that this secret has been deleted
#[serde(skip_serializing_if = "Option::is_none")]
pub deleted: Option<bool>,
///The Unix timestamp for the expiry time of the secret, after which the secret deletes.
#[serde(skip_serializing_if = "Option::is_none")]
pub expires_at: Option<i64>,
///Unique identifier for the object.
pub id: String,
///Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
pub livemode: bool,
///A name for the secret that's unique within the scope.
pub name: String,
///String representing the object's type. Objects of the same type share the same value.
pub object: String,
///The plaintext secret value to be stored.
#[serde(skip_serializing_if = "Option::is_none")]
pub payload: Option<String>,
///
pub scope: SecretServiceResourceScope,
}
impl std::fmt::Display for AppsSecret {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> Result<(), std::fmt::Error> {
write!(f, "{}", serde_json::to_string(self).unwrap())
}
}