docusign-base-0.0.1: src/DocuSign/Base/Types/PaymentGatewayAccountsInfo.hs
module DocuSign.Base.Types.PaymentGatewayAccountsInfo where
import DocuSign.Base.Types.Common
import DocuSign.Base.Types.PaymentGatewayAccounts
data PaymentGatewayAccountsInfo = PaymentGatewayAccountsInfo
{ paymentGatewayAccountsInfoPaymentGatewayAccounts :: Maybe [PaymentGatewayAccounts]
} deriving (Show, Eq, Generic)
instance FromJSON PaymentGatewayAccountsInfo where
parseJSON = genericParseJSON (removeFieldLabelPrefix "paymentGatewayAccountsInfo")
instance ToJSON PaymentGatewayAccountsInfo where
toJSON = genericToJSON (removeFieldLabelPrefix "paymentGatewayAccountsInfo")
instance Default PaymentGatewayAccountsInfo