class Comet::MacOSCodeSignProperties

def to_hash

Returns:
  • (Hash) - The complete object as a Ruby hash
def to_hash
  ret = {}
  ret['Level'] = @level
  ret['SignLocally'] = @sign_locally
  ret['SSHServer'] = @sshserver
  ret['CertificateName'] = @certificate_name
  ret['AppCertificateName'] = @app_certificate_name
  ret['AppleID'] = @apple_id
  ret['AppleIDPass'] = @apple_idpass
  ret['AppleIDPassFormat'] = @apple_idpass_format
  ret['CertificateFile'] = @certificate_file
  ret['AppCertificateFile'] = @app_certificate_file
  ret['PfxFilePassword'] = @pfx_file_password
  ret['PfxFilePasswordFormat'] = @pfx_file_password_format
  ret['NotaryAPIIssuerID'] = @notary_apiissuer_id
  ret['NotaryAPIKeyID'] = @notary_apikey_id
  ret['NotaryAPIKeyFile'] = @notary_apikey_file
  @unknown_json_fields.each do |k, v|
    ret[k] = v
  end
  ret
end