# PinterestSdkClient::Board ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **id** | **String** | | [optional][readonly] | | **name** | **String** | | | | **description** | **String** | | [optional] | | **owner** | [**BoardOwner**](BoardOwner.md) | | [optional][readonly] | | **privacy** | **String** | Privacy setting for a board. Learn more about <a href=\"https://help.pinterest.com/en/article/secret-boards\">secret boards</a> and <a href=\"https://help.pinterest.com/en/business/article/protected-boards\">protected boards</a> | [optional][default to 'PUBLIC'] | ## Example ```ruby require 'pinterest_sdk' instance = PinterestSdkClient::Board.new( id: 549755885175, name: Summer Recipes, description: My favorite summer recipes, owner: null, privacy: null ) ```