28 lines
682 B
Go
28 lines
682 B
Go
// Copyright (c) 2016, 2018, 2019, Oracle and/or its affiliates. All rights reserved.
|
|
// Code generated. DO NOT EDIT.
|
|
|
|
// Key Management Service API
|
|
//
|
|
// API for managing and performing operations with keys and vaults.
|
|
//
|
|
|
|
package keymanagement
|
|
|
|
import (
|
|
"github.com/oracle/oci-go-sdk/common"
|
|
)
|
|
|
|
// DecryptedData The representation of DecryptedData
|
|
type DecryptedData struct {
|
|
|
|
// The decrypted data, expressed as a base64-encoded value.
|
|
Plaintext *string `mandatory:"true" json:"plaintext"`
|
|
|
|
// Checksum of the decrypted data.
|
|
PlaintextChecksum *string `mandatory:"true" json:"plaintextChecksum"`
|
|
}
|
|
|
|
func (m DecryptedData) String() string {
|
|
return common.PointerString(m)
|
|
}
|