Sha256: ace4ecc575f24a7eb46906c1781e65dce48b7e34e454b77c1c8d7a7ab59419dc
Contents?: true
Size: 495 Bytes
Versions: 3
Compression:
Stored size: 495 Bytes
Contents
module OpConnect class Vault attr_reader :id, :name, :attribute_version, :content_version, :items, :type, :created_at, :updated_at def initialize(options = {}) @id = options["id"] @name = options["name"] @attribute_version = options["attributeVersion"] @content_version = options["contentVersion"] @items = options["items"] @type = options["type"] @created_at = options["createdAt"] @updated_at = options["updatedAt"] end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
op_connect-0.1.3 | lib/op_connect/vault.rb |
op_connect-0.1.2 | lib/op_connect/vault.rb |
op_connect-0.1.1 | lib/op_connect/vault.rb |