# PinterestSdkClient::Account

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **account_type** | **String** | Type of account | [optional] |
| **profile_image** | **String** |  | [optional] |
| **website_url** | **String** |  | [optional] |
| **username** | **String** |  | [optional] |

## Example

```ruby
require 'pinterest_sdk'

instance = PinterestSdkClient::Account.new(
  account_type: null,
  profile_image: null,
  website_url: null,
  username: null
)
```