class Evernote::EDAM::Type::LazyMap

A structure that wraps a map of name/value pairs whose values are not always present in the structure in order to reduce space when obtaining batches of entities that contain the map.

When the server provides the client with a LazyMap, it will fill in either the keysOnly field or the fullMap field, but never both, based on the API and parameters.

When a client provides a LazyMap to the server as part of an update to an object, the server will only update the LazyMap if the fullMap field is set. If the fullMap field is not set, the server will not make any changes to the map.

Check the API documentation of the individual calls involving the LazyMap for full details including the constraints of the names and values of the map.

<dl> <dt>keysOnly</dt>

<dd>The set of keys for the map.  This field is ignored by the
    server when set.
</dd>

<dt>fullMap</dt>

<dd>The complete map, including all keys and values.
</dd>

</dl>

Constants

FIELDS
FULLMAP
KEYSONLY

Public Instance Methods

struct_fields() click to toggle source
# File lib/Evernote/EDAM/types_types.rb, line 938
def struct_fields; FIELDS; end
validate() click to toggle source
# File lib/Evernote/EDAM/types_types.rb, line 940
def validate
end