ExAcme.Authorization (ExAcme v0.3.0)

View Source

Represents an ACME Authorization object.

Provides functionalities to fetch and process authorization details from the ACME server.

Attributes

  • url - The URL of the authorization.
  • status - The current status of the authorization.
  • expires - Expiration datetime of the authorization.
  • identifier - The identifier (e.g., domain) associated with the authorization.
  • challenges - List of challenges available for the authorization.
  • wildcard - Boolean indicating if the authorization is for a wildcard domain.

Summary

Types

t()

ACME Authorization object

Types

t()

@type t() :: %ExAcme.Authorization{
  challenges: [map()],
  expires: DateTime.t() | nil,
  identifier: map(),
  status: String.t(),
  url: String.t(),
  wildcard: boolean()
}

ACME Authorization object