CFSync.Asset (CFSync v0.18.0)

View Source

The Asset struct holds data from Contentful assets. It's provided as is and is not configurable, so if you need more fields than those currently mapped, feel free to send a PR.

Summary

Types

t()

@type t() :: %CFSync.Asset{
  content_type: binary(),
  created_at: DateTime.t(),
  description: binary(),
  file_name: binary(),
  height: integer(),
  id: binary(),
  locale: atom(),
  size: integer(),
  space_id: binary(),
  store: CFSync.store(),
  title: binary(),
  updated_at: DateTime.t(),
  url: binary(),
  width: integer()
}