GoogleApi.WalletObjects.V1.Model.ContentTypeInfo (google_api_wallet_objects v0.12.0)

View Source

Detailed Content-Type information from Scotty. The Content-Type of the media will typically be filled in by the header or Scotty's best_guess, but this extended information provides the backend with more information so that it can make a better decision if needed. This is only used on media upload requests from Scotty.

Attributes

  • bestGuess (type: String.t, default: nil) - Scotty's best guess of what the content type of the file is.
  • fromBytes (type: String.t, default: nil) - The content type of the file derived by looking at specific bytes (i.e. "magic bytes") of the actual file.
  • fromFileName (type: String.t, default: nil) - The content type of the file derived from the file extension of the original file name used by the client.
  • fromHeader (type: String.t, default: nil) - The content type of the file as specified in the request headers, multipart headers, or RUPIO start request.
  • fromUrlPath (type: String.t, default: nil) - The content type of the file derived from the file extension of the URL path. The URL path is assumed to represent a file name (which is typically only true for agents that are providing a REST API).

Summary

Functions

Unwrap a decoded JSON object into its complex fields.

Types

t()

@type t() :: %GoogleApi.WalletObjects.V1.Model.ContentTypeInfo{
  bestGuess: String.t() | nil,
  fromBytes: String.t() | nil,
  fromFileName: String.t() | nil,
  fromHeader: String.t() | nil,
  fromUrlPath: String.t() | nil
}

Functions

decode(value, options)

@spec decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.