Brevo::CreateUpdateCategory Properties Name Type Description Notes id String Unique Category ID as saved in the shop name String Mandatory in case of creation. Name of the Category, as displayed in the shop [optional] url String URL to the category [optional] update_enabled Boolean Facilitate to update the existing category in the same request (updateEnabled = true) [optional][default to false] deleted_at String UTC date-time (YYYY-MM-DDTHH:mm:ss.SSSZ) of the category deleted from the shop's database [optional] Example require 'brevo' instance = Brevo::CreateUpdateCategory.new( id: CAT123, name: Electronics, url: http://mydomain.com/category/electronics, update_enabled: false, deleted_at: 2017-05-12T12:30:00Z )