Skip to main content

ApiSecretDto

Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects

Represents a secret for an API.

public class ApiSecretDto

Inheritance ObjectApiSecretDto

Properties

ValueEncrypted

Value of the secret encrypted.

public string ValueEncrypted { get; set; }

Property Value

String

ValueClearText

Value of the secret in clear text.

public string ValueClearText { get; set; }

Property Value

String

ExpirationDate

Expiration date of the secret.

public Nullable<DateTime> ExpirationDate { get; set; }

Property Value

Nullable<DateTime>

Description

Description of the secret.

public string Description { get; set; }

Property Value

String

Constructors

ApiSecretDto()

public ApiSecretDto()