docusign-base-minimal-0.0.1: src/DocuSign/Base/Types/SocialAuthentication.hs
module DocuSign.Base.Types.SocialAuthentication where
import DocuSign.Base.Types.Common
data SocialAuthentication = SocialAuthentication
{ socialAuthenticationAuthentication :: Maybe Text
} deriving (Show, Eq, Generic)
instance FromJSON SocialAuthentication where
parseJSON = genericParseJSON (removeFieldLabelPrefix "socialAuthentication")
instance ToJSON SocialAuthentication where
toJSON = genericToJSON (removeFieldLabelPrefix "socialAuthentication")
instance Default SocialAuthentication