=begin
#Klaviyo API

#The Klaviyo REST API. Please visit https://developers.klaviyo.com for more details.

The version of the OpenAPI document: 2023-12-15
Contact: developers@klaviyo.com
Generated by: https://openapi-generator.tech
OpenAPI Generator version: 6.2.1

=end

require 'spec_helper'
require 'json'

# Unit tests for KlaviyoAPI::DataPrivacyApi
# Automatically generated by openapi-generator (https://openapi-generator.tech)
# Please update as you see appropriate
describe 'DataPrivacyApi' do
  before do
    # run before each test
    @api_instance = KlaviyoAPI::DataPrivacyApi.new
  end

  after do
    # run after each test
  end

  describe 'test an instance of DataPrivacyApi' do
    it 'should create an instance of DataPrivacyApi' do
      expect(@api_instance).to be_instance_of(KlaviyoAPI::DataPrivacyApi)
    end
  end

  # unit tests for request_profile_deletion
  # Request Profile Deletion
  # Request a deletion for the profiles corresponding to one of the following identifiers: `email`, `phone_number`, or `id`. If multiple identifiers are provided, we will return an error.  All profiles that match the provided identifier will be deleted.  The deletion occurs asynchronously; however, once it has completed, the deleted profile will appear on the [Deleted Profiles page](https://www.klaviyo.com/account/deleted).  For more information on the deletion process, please refer to our [Help Center docs on how to handle GDPR and CCPA deletion requests](https://help.klaviyo.com/hc/en-us/articles/360004217631-How-to-Handle-GDPR-Requests#record-gdpr-and-ccpa%20%20-deletion-requests2).<br><br>*Rate limits*:<br>Burst: `3/s`<br>Steady: `60/m`  **Scopes:** `data-privacy:write`
  # @param data_privacy_create_deletion_job_query 
  # @param [Hash] opts the optional parameters
  # @return [nil]
  describe 'request_profile_deletion test' do
    it 'should work' do
      # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
    end
  end

end