Skip to content

Latest commit

 

History

History
114 lines (61 loc) · 2.72 KB

Runtime.md

File metadata and controls

114 lines (61 loc) · 2.72 KB

Runtime

Properties

Name Type Description Notes
Id string
Name string
CreatedAt int64
UpdatedAt int64

Methods

NewRuntime

func NewRuntime(id string, name string, createdAt int64, updatedAt int64, ) *Runtime

NewRuntime instantiates a new Runtime 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

NewRuntimeWithDefaults

func NewRuntimeWithDefaults() *Runtime

NewRuntimeWithDefaults instantiates a new Runtime 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

GetId

func (o *Runtime) GetId() string

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

GetIdOk

func (o *Runtime) GetIdOk() (*string, 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 *Runtime) SetId(v string)

SetId sets Id field to given value.

GetName

func (o *Runtime) GetName() string

GetName returns the Name field if non-nil, zero value otherwise.

GetNameOk

func (o *Runtime) GetNameOk() (*string, bool)

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

SetName

func (o *Runtime) SetName(v string)

SetName sets Name field to given value.

GetCreatedAt

func (o *Runtime) GetCreatedAt() int64

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

GetCreatedAtOk

func (o *Runtime) GetCreatedAtOk() (*int64, 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 *Runtime) SetCreatedAt(v int64)

SetCreatedAt sets CreatedAt field to given value.

GetUpdatedAt

func (o *Runtime) GetUpdatedAt() int64

GetUpdatedAt returns the UpdatedAt field if non-nil, zero value otherwise.

GetUpdatedAtOk

func (o *Runtime) GetUpdatedAtOk() (*int64, bool)

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

SetUpdatedAt

func (o *Runtime) SetUpdatedAt(v int64)

SetUpdatedAt sets UpdatedAt field to given value.

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