Show / Hide Table of Contents

Class CryptoAssessmentWalletSummary

Wallet details for one crypto feature.

Inheritance
object
CryptoAssessmentWalletSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatasafeService.Models
Assembly: OCI.DotNetSDK.Datasafe.dll
Syntax
public class CryptoAssessmentWalletSummary

Properties

AssessmentId

Declaration
[Required(ErrorMessage = "AssessmentId is required.")]
[JsonProperty(PropertyName = "assessmentId")]
public string AssessmentId { get; set; }
Property Value
Type Description
string

OCID of the crypto assessment that discovered the wallet.

Remarks

Required

AutoLogin

Declaration
[Required(ErrorMessage = "AutoLogin is required.")]
[JsonProperty(PropertyName = "autoLogin")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CryptoAssessmentWalletSummary.AutoLoginEnum? AutoLogin { get; set; }
Property Value
Type Description
CryptoAssessmentWalletSummary.AutoLoginEnum?

Whether wallet auto-login is enabled.

Remarks

Required

Feature

Declaration
[Required(ErrorMessage = "Feature is required.")]
[JsonProperty(PropertyName = "feature")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CryptoAssessmentWalletSummary.FeatureEnum? Feature { get; set; }
Property Value
Type Description
CryptoAssessmentWalletSummary.FeatureEnum?

Crypto feature for which wallet details are reported.

Remarks

Required

TargetId

Declaration
[Required(ErrorMessage = "TargetId is required.")]
[JsonProperty(PropertyName = "targetId")]
public string TargetId { get; set; }
Property Value
Type Description
string

OCID of the target database associated with the wallet.

Remarks

Required

TimeCreated

Declaration
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

Wallet creation time in RFC3339 format.

TimeLastAssessed

Declaration
[JsonProperty(PropertyName = "timeLastAssessed")]
public DateTime? TimeLastAssessed { get; set; }
Property Value
Type Description
DateTime?

The date and time the associated crypto assessment was last assessed, in RFC3339 format.

WalletEncryptionAlgorithm

Declaration
[Required(ErrorMessage = "WalletEncryptionAlgorithm is required.")]
[JsonProperty(PropertyName = "walletEncryptionAlgorithm")]
public string WalletEncryptionAlgorithm { get; set; }
Property Value
Type Description
string

Wallet encryption algorithm.

Remarks

Required

WalletLocation

Declaration
[Required(ErrorMessage = "WalletLocation is required.")]
[JsonProperty(PropertyName = "walletLocation")]
public string WalletLocation { get; set; }
Property Value
Type Description
string

Wallet path for the feature.

Remarks

Required

In this article
Back to top