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

package components

type RSACryptographicKey struct {
	Exponent *string `json:"exponent,omitempty"`
	Length   *int    `json:"length,omitempty"`
	Modulus  *string `json:"modulus,omitempty"`
}

func (o *RSACryptographicKey) GetExponent() *string {
	if o == nil {
		return nil
	}
	return o.Exponent
}

func (o *RSACryptographicKey) GetLength() *int {
	if o == nil {
		return nil
	}
	return o.Length
}

func (o *RSACryptographicKey) GetModulus() *string {
	if o == nil {
		return nil
	}
	return o.Modulus
}
