Skip to content

Latest commit

 

History

History
186 lines (101 loc) · 4.81 KB

CertificateSerialDTO.md

File metadata and controls

186 lines (101 loc) · 4.81 KB

CertificateSerialDTO

Properties

Name Type Description Notes
Created Pointer to string [optional]
Updated Pointer to string [optional]
Id Pointer to int64 [optional]
Serial Pointer to int64 [optional]
Expiration Pointer to string [optional]
Revoked Pointer to bool [optional]

Methods

NewCertificateSerialDTO

func NewCertificateSerialDTO() *CertificateSerialDTO

NewCertificateSerialDTO instantiates a new CertificateSerialDTO 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

NewCertificateSerialDTOWithDefaults

func NewCertificateSerialDTOWithDefaults() *CertificateSerialDTO

NewCertificateSerialDTOWithDefaults instantiates a new CertificateSerialDTO 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

GetCreated

func (o *CertificateSerialDTO) GetCreated() string

GetCreated returns the Created field if non-nil, zero value otherwise.

GetCreatedOk

func (o *CertificateSerialDTO) GetCreatedOk() (*string, bool)

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

SetCreated

func (o *CertificateSerialDTO) SetCreated(v string)

SetCreated sets Created field to given value.

HasCreated

func (o *CertificateSerialDTO) HasCreated() bool

HasCreated returns a boolean if a field has been set.

GetUpdated

func (o *CertificateSerialDTO) GetUpdated() string

GetUpdated returns the Updated field if non-nil, zero value otherwise.

GetUpdatedOk

func (o *CertificateSerialDTO) GetUpdatedOk() (*string, bool)

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

SetUpdated

func (o *CertificateSerialDTO) SetUpdated(v string)

SetUpdated sets Updated field to given value.

HasUpdated

func (o *CertificateSerialDTO) HasUpdated() bool

HasUpdated returns a boolean if a field has been set.

GetId

func (o *CertificateSerialDTO) GetId() int64

GetId returns the Id field if non-nil, zero value otherwise.

GetIdOk

func (o *CertificateSerialDTO) GetIdOk() (*int64, bool)

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

SetId

func (o *CertificateSerialDTO) SetId(v int64)

SetId sets Id field to given value.

HasId

func (o *CertificateSerialDTO) HasId() bool

HasId returns a boolean if a field has been set.

GetSerial

func (o *CertificateSerialDTO) GetSerial() int64

GetSerial returns the Serial field if non-nil, zero value otherwise.

GetSerialOk

func (o *CertificateSerialDTO) GetSerialOk() (*int64, bool)

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

SetSerial

func (o *CertificateSerialDTO) SetSerial(v int64)

SetSerial sets Serial field to given value.

HasSerial

func (o *CertificateSerialDTO) HasSerial() bool

HasSerial returns a boolean if a field has been set.

GetExpiration

func (o *CertificateSerialDTO) GetExpiration() string

GetExpiration returns the Expiration field if non-nil, zero value otherwise.

GetExpirationOk

func (o *CertificateSerialDTO) GetExpirationOk() (*string, bool)

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

SetExpiration

func (o *CertificateSerialDTO) SetExpiration(v string)

SetExpiration sets Expiration field to given value.

HasExpiration

func (o *CertificateSerialDTO) HasExpiration() bool

HasExpiration returns a boolean if a field has been set.

GetRevoked

func (o *CertificateSerialDTO) GetRevoked() bool

GetRevoked returns the Revoked field if non-nil, zero value otherwise.

GetRevokedOk

func (o *CertificateSerialDTO) GetRevokedOk() (*bool, bool)

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

SetRevoked

func (o *CertificateSerialDTO) SetRevoked(v bool)

SetRevoked sets Revoked field to given value.

HasRevoked

func (o *CertificateSerialDTO) HasRevoked() bool

HasRevoked returns a boolean if a field has been set.

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