Skip to content

Latest commit

 

History

History
134 lines (73 loc) · 3.79 KB

CertificateRepresentation.md

File metadata and controls

134 lines (73 loc) · 3.79 KB

CertificateRepresentation

Properties

Name Type Description Notes
PrivateKey Pointer to string [optional]
PublicKey Pointer to string [optional]
Certificate Pointer to string [optional]
Kid Pointer to string [optional]

Methods

NewCertificateRepresentation

func NewCertificateRepresentation() *CertificateRepresentation

NewCertificateRepresentation instantiates a new CertificateRepresentation 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

NewCertificateRepresentationWithDefaults

func NewCertificateRepresentationWithDefaults() *CertificateRepresentation

NewCertificateRepresentationWithDefaults instantiates a new CertificateRepresentation 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

GetPrivateKey

func (o *CertificateRepresentation) GetPrivateKey() string

GetPrivateKey returns the PrivateKey field if non-nil, zero value otherwise.

GetPrivateKeyOk

func (o *CertificateRepresentation) GetPrivateKeyOk() (*string, bool)

GetPrivateKeyOk returns a tuple with the PrivateKey field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPrivateKey

func (o *CertificateRepresentation) SetPrivateKey(v string)

SetPrivateKey sets PrivateKey field to given value.

HasPrivateKey

func (o *CertificateRepresentation) HasPrivateKey() bool

HasPrivateKey returns a boolean if a field has been set.

GetPublicKey

func (o *CertificateRepresentation) GetPublicKey() string

GetPublicKey returns the PublicKey field if non-nil, zero value otherwise.

GetPublicKeyOk

func (o *CertificateRepresentation) GetPublicKeyOk() (*string, bool)

GetPublicKeyOk returns a tuple with the PublicKey field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetPublicKey

func (o *CertificateRepresentation) SetPublicKey(v string)

SetPublicKey sets PublicKey field to given value.

HasPublicKey

func (o *CertificateRepresentation) HasPublicKey() bool

HasPublicKey returns a boolean if a field has been set.

GetCertificate

func (o *CertificateRepresentation) GetCertificate() string

GetCertificate returns the Certificate field if non-nil, zero value otherwise.

GetCertificateOk

func (o *CertificateRepresentation) GetCertificateOk() (*string, bool)

GetCertificateOk returns a tuple with the Certificate field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetCertificate

func (o *CertificateRepresentation) SetCertificate(v string)

SetCertificate sets Certificate field to given value.

HasCertificate

func (o *CertificateRepresentation) HasCertificate() bool

HasCertificate returns a boolean if a field has been set.

GetKid

func (o *CertificateRepresentation) GetKid() string

GetKid returns the Kid field if non-nil, zero value otherwise.

GetKidOk

func (o *CertificateRepresentation) GetKidOk() (*string, bool)

GetKidOk returns a tuple with the Kid field if it's non-nil, zero value otherwise and a boolean to check if the value has been set.

SetKid

func (o *CertificateRepresentation) SetKid(v string)

SetKid sets Kid field to given value.

HasKid

func (o *CertificateRepresentation) HasKid() bool

HasKid returns a boolean if a field has been set.

[Back to Model list] [Back to API list] [Back to README]