Skip to content

Commit

Permalink
Remove unnecessary pubs
Browse files Browse the repository at this point in the history
  • Loading branch information
cobward committed Sep 3, 2024
1 parent f65436f commit 74e6b2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/credential_offer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ where
#[skip_serializing_none]
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct CredentialOfferGrants {
pub authorization_code: Option<AuthorizationCodeGrant>,
authorization_code: Option<AuthorizationCodeGrant>,
#[serde(rename = "urn:ietf:params:oauth:grant-type:pre-authorized_code")]
pub pre_authorized_code: Option<PreAuthorizationCodeGrant>,
pre_authorized_code: Option<PreAuthorizationCodeGrant>,
}
impl CredentialOfferGrants {
pub fn new(
Expand Down

0 comments on commit 74e6b2c

Please sign in to comment.