class Evernote::EDAM::UserStore::BootstrapProfile

This structure describes a collection of bootstrap settings.

<dl>

<dt>name:</dt>
  <dd>
  The unique name of the profile, which is guaranteed to remain consistent across
  calls to getBootstrapInfo.
  </dd>
<dt>settings:</dt>
  <dd>
  The settings for this profile.
  </dd>
</dl>

Constants

FIELDS
NAME
SETTINGS

Public Instance Methods

struct_fields() click to toggle source
# File lib/Evernote/EDAM/user_store_types.rb, line 305
def struct_fields; FIELDS; end
validate() click to toggle source
# File lib/Evernote/EDAM/user_store_types.rb, line 307
def validate
  raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field name is unset!') unless @name
  raise ::Thrift::ProtocolException.new(::Thrift::ProtocolException::UNKNOWN, 'Required field settings is unset!') unless @settings
end