# KlaviyoAPI::MarketingSubscriptionParameters ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **consent** | **String** | The Consent status to subscribe to for the \"Marketing\" type. Currently supports \"SUBSCRIBED\". | | | **consented_at** | **Time** | The timestamp of when the profile's consent was gathered. This should only be used when syncing over historical consent info to Klaviyo; if the `historical_import` flag is not included, providing any value for this field will raise an error. | [optional] | ## Example ```ruby require 'klaviyo-api-sdk' instance = KlaviyoAPI::MarketingSubscriptionParameters.new( consent: SUBSCRIBED, consented_at: null ) ```