class OpConnect::Vault

Attributes

attribute_version[R]
content_version[R]
created_at[R]
id[R]
items[R]
name[R]
type[R]
updated_at[R]

Public Class Methods

new(options = {}) click to toggle source
# File lib/op_connect/vault.rb, line 5
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