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