Name | Type | Description | Notes |
---|---|---|---|
Plaintext | string | Data to be encrypted | |
Token | Pointer to string | Authentication token (see `/auth` and `/configure`) | [optional] |
TokenizerName | string | The name of the tokenizer to use in the encryption process | |
Tweak | Pointer to string | Base64 encoded tweak for vaultless encryption | [optional] |
UidToken | Pointer to string | The universal identity token, Required only for universal_identity authentication | [optional] |
func NewTokenize(plaintext string, tokenizerName string, ) *Tokenize
NewTokenize instantiates a new Tokenize object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed
func NewTokenizeWithDefaults() *Tokenize
NewTokenizeWithDefaults instantiates a new Tokenize object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set
func (o *Tokenize) GetPlaintext() string
GetPlaintext returns the Plaintext field if non-nil, zero value otherwise.
func (o *Tokenize) GetPlaintextOk() (*string, bool)
GetPlaintextOk returns a tuple with the Plaintext field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Tokenize) SetPlaintext(v string)
SetPlaintext sets Plaintext field to given value.
func (o *Tokenize) GetToken() string
GetToken returns the Token field if non-nil, zero value otherwise.
func (o *Tokenize) GetTokenOk() (*string, bool)
GetTokenOk returns a tuple with the Token field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Tokenize) SetToken(v string)
SetToken sets Token field to given value.
func (o *Tokenize) HasToken() bool
HasToken returns a boolean if a field has been set.
func (o *Tokenize) GetTokenizerName() string
GetTokenizerName returns the TokenizerName field if non-nil, zero value otherwise.
func (o *Tokenize) GetTokenizerNameOk() (*string, bool)
GetTokenizerNameOk returns a tuple with the TokenizerName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Tokenize) SetTokenizerName(v string)
SetTokenizerName sets TokenizerName field to given value.
func (o *Tokenize) GetTweak() string
GetTweak returns the Tweak field if non-nil, zero value otherwise.
func (o *Tokenize) GetTweakOk() (*string, bool)
GetTweakOk returns a tuple with the Tweak field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Tokenize) SetTweak(v string)
SetTweak sets Tweak field to given value.
func (o *Tokenize) HasTweak() bool
HasTweak returns a boolean if a field has been set.
func (o *Tokenize) GetUidToken() string
GetUidToken returns the UidToken field if non-nil, zero value otherwise.
func (o *Tokenize) GetUidTokenOk() (*string, bool)
GetUidTokenOk returns a tuple with the UidToken field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.
func (o *Tokenize) SetUidToken(v string)
SetUidToken sets UidToken field to given value.
func (o *Tokenize) HasUidToken() bool
HasUidToken returns a boolean if a field has been set.