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
41
42
43
44
45
46
47
48
49
/*
* ORY Hydra
*
* Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
*
* The version of the OpenAPI document: latest
*
* Generated by: https://openapi-generator.tech
*/
/// PreviousConsentSession : The response used to return used consent requests same as HandledLoginRequest, just with consent_request exposed as json
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
pub struct PreviousConsentSession {
#[serde(rename = "consent_request", skip_serializing_if = "Option::is_none")]
pub consent_request: Option<crate::models::ConsentRequest>,
/// GrantedAudience sets the audience the user authorized the client to use. Should be a subset of `requested_access_token_audience`.
#[serde(rename = "grant_access_token_audience", skip_serializing_if = "Option::is_none")]
pub grant_access_token_audience: Option<Vec<String>>,
/// GrantScope sets the scope the user authorized the client to use. Should be a subset of `requested_scope`
#[serde(rename = "grant_scope", skip_serializing_if = "Option::is_none")]
pub grant_scope: Option<Vec<String>>,
/// Remember, if set to true, tells ORY Hydra to remember this consent authorization and reuse it if the same client asks the same user for the same, or a subset of, scope.
#[serde(rename = "remember", skip_serializing_if = "Option::is_none")]
pub remember: Option<bool>,
/// RememberFor sets how long the consent authorization should be remembered for in seconds. If set to `0`, the authorization will be remembered indefinitely.
#[serde(rename = "remember_for", skip_serializing_if = "Option::is_none")]
pub remember_for: Option<i64>,
#[serde(rename = "session", skip_serializing_if = "Option::is_none")]
pub session: Option<crate::models::ConsentRequestSession>,
}
impl PreviousConsentSession {
/// The response used to return used consent requests same as HandledLoginRequest, just with consent_request exposed as json
pub fn new() -> PreviousConsentSession {
PreviousConsentSession {
consent_request: None,
grant_access_token_audience: None,
grant_scope: None,
remember: None,
remember_for: None,
session: None,
}
}
}