# KlaviyoAPI::CampaignCreateQueryResourceObjectAttributes ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **name** | **String** | The campaign name | | | **channel** | **String** | The type of campaign (email or sms, for example) | | | **audiences** | [**AudiencesSubObject**](AudiencesSubObject.md) | | | | **send_strategy** | [**SendStrategySubObject**](SendStrategySubObject.md) | | | | **send_options** | [**SendOptionsSubObject**](SendOptionsSubObject.md) | | | | **tracking_options** | [**TrackingOptionsSubObject**](TrackingOptionsSubObject.md) | | [optional] | ## Example ```ruby require 'klaviyo-api-sdk' instance = KlaviyoAPI::CampaignCreateQueryResourceObjectAttributes.new( name: My new campaign, channel: email, audiences: null, send_strategy: null, send_options: null, tracking_options: null ) ```