Skip to content

Latest commit

 

History

History
135 lines (72 loc) · 3.77 KB

ServiceLogResponseDto.md

File metadata and controls

135 lines (72 loc) · 3.77 KB

ServiceLogResponseDto

Properties

Name Type Description Notes
ContainerName string
CreatedAt int32 Unix timestamp with millisecond precision
Message string
PodName string
Version string

Methods

NewServiceLogResponseDto

func NewServiceLogResponseDto(containerName string, createdAt int32, message string, podName string, version string, ) *ServiceLogResponseDto

NewServiceLogResponseDto instantiates a new ServiceLogResponseDto 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

NewServiceLogResponseDtoWithDefaults

func NewServiceLogResponseDtoWithDefaults() *ServiceLogResponseDto

NewServiceLogResponseDtoWithDefaults instantiates a new ServiceLogResponseDto 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

GetContainerName

func (o *ServiceLogResponseDto) GetContainerName() string

GetContainerName returns the ContainerName field if non-nil, zero value otherwise.

GetContainerNameOk

func (o *ServiceLogResponseDto) GetContainerNameOk() (*string, bool)

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

SetContainerName

func (o *ServiceLogResponseDto) SetContainerName(v string)

SetContainerName sets ContainerName field to given value.

GetCreatedAt

func (o *ServiceLogResponseDto) GetCreatedAt() int32

GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise.

GetCreatedAtOk

func (o *ServiceLogResponseDto) GetCreatedAtOk() (*int32, bool)

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

SetCreatedAt

func (o *ServiceLogResponseDto) SetCreatedAt(v int32)

SetCreatedAt sets CreatedAt field to given value.

GetMessage

func (o *ServiceLogResponseDto) GetMessage() string

GetMessage returns the Message field if non-nil, zero value otherwise.

GetMessageOk

func (o *ServiceLogResponseDto) GetMessageOk() (*string, bool)

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

SetMessage

func (o *ServiceLogResponseDto) SetMessage(v string)

SetMessage sets Message field to given value.

GetPodName

func (o *ServiceLogResponseDto) GetPodName() string

GetPodName returns the PodName field if non-nil, zero value otherwise.

GetPodNameOk

func (o *ServiceLogResponseDto) GetPodNameOk() (*string, bool)

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

SetPodName

func (o *ServiceLogResponseDto) SetPodName(v string)

SetPodName sets PodName field to given value.

GetVersion

func (o *ServiceLogResponseDto) GetVersion() string

GetVersion returns the Version field if non-nil, zero value otherwise.

GetVersionOk

func (o *ServiceLogResponseDto) GetVersionOk() (*string, bool)

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

SetVersion

func (o *ServiceLogResponseDto) SetVersion(v string)

SetVersion sets Version field to given value.

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