// Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.

package components

type CryptSetup struct {
	ClientNonce *string `json:"client_nonce,omitempty"`
	Key         *string `json:"key,omitempty"`
	ServerNonce *string `json:"server_nonce,omitempty"`
}

func (o *CryptSetup) GetClientNonce() *string {
	if o == nil {
		return nil
	}
	return o.ClientNonce
}

func (o *CryptSetup) GetKey() *string {
	if o == nil {
		return nil
	}
	return o.Key
}

func (o *CryptSetup) GetServerNonce() *string {
	if o == nil {
		return nil
	}
	return o.ServerNonce
}
