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

package components

type CtRecord struct {
	// An RFC-3339-formatted timestamp indicating when the certificate was entered into the CT log.
	AddedToCtAt *string `json:"added_to_ct_at,omitempty"`
	// An RFC-3339-formated timestamp indicating when the certificate was ingested from the CT log into the Censys dataset.
	CtToCensysAt *string `json:"ct_to_censys_at,omitempty"`
	// Numerical marker of the certificate's place in the CT log.
	Index *int64 `json:"index,omitempty"`
}

func (o *CtRecord) GetAddedToCtAt() *string {
	if o == nil {
		return nil
	}
	return o.AddedToCtAt
}

func (o *CtRecord) GetCtToCensysAt() *string {
	if o == nil {
		return nil
	}
	return o.CtToCensysAt
}

func (o *CtRecord) GetIndex() *int64 {
	if o == nil {
		return nil
	}
	return o.Index
}
