cloudex v1.2.2 Cloudex.UploadedImage

A simple struct containing all the information from cloudinary.

  • source
  • public_id
  • version
  • signature
  • width
  • hieght
  • format
  • resource_type
  • created_at
  • tags
  • bytes
  • type
  • etag
  • url
  • secure_url
  • original_filename
  • phash

Link to this section Summary

Link to this section Types

Link to this type

t()
t() :: %Cloudex.UploadedImage{
  bytes: non_neg_integer() | nil,
  context: struct() | nil,
  created_at: String.t() | nil,
  etag: String.t() | nil,
  format: String.t() | nil,
  height: non_neg_integer() | nil,
  moderation: [String.t()] | [] | nil,
  original_filename: String.t() | nil,
  phash: String.t() | nil,
  public_id: String.t() | nil,
  resource_type: String.t() | nil,
  secure_url: String.t() | nil,
  signature: String.t() | nil,
  source: String.t() | nil,
  tags: [String.t()] | [] | nil,
  type: String.t() | nil,
  url: String.t() | nil,
  version: String.t() | nil,
  width: non_neg_integer() | nil
}