Sha256: 92f4d1657d9009600b4f6f13dd44c32fbbb821fe5388579d1cf7aa5ac37ba947
Contents?: true
Size: 880 Bytes
Versions: 5
Compression:
Stored size: 880 Bytes
Contents
# frozen_string_literal: true module Dnsimple module Struct class DelegationSignerRecord < Base # @return [Integer] The ID of the delegation signer record in DNSimple. attr_accessor :id # @return [Integer] The associated domain ID. attr_accessor :domain_id # @return [String] The signing algorithm used. attr_accessor :algorithm # @return [String] The digest value. attr_accessor :digest # @return [String] The digest type used. attr_accessor :digest_type # @return [String] The keytag for the associated DNSKEY. attr_accessor :keytag # @return [String] When the delegation signing record was created in DNSimple. attr_accessor :created_at # @return [String] When the delegation signing record was last updated in DNSimple. attr_accessor :updated_at end end end
Version data entries
5 entries across 5 versions & 1 rubygems