Skip to content

Latest commit

 

History

History
93 lines (50 loc) · 2.38 KB

LayerPost.md

File metadata and controls

93 lines (50 loc) · 2.38 KB

LayerPost

Properties

Name Type Description Notes
Key string Unique identifier for the layer
Name string Layer name
Description string The checkout flow for the application

Methods

NewLayerPost

func NewLayerPost(key string, name string, description string, ) *LayerPost

NewLayerPost instantiates a new LayerPost 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

NewLayerPostWithDefaults

func NewLayerPostWithDefaults() *LayerPost

NewLayerPostWithDefaults instantiates a new LayerPost 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

GetKey

func (o *LayerPost) GetKey() string

GetKey returns the Key field if non-nil, zero value otherwise.

GetKeyOk

func (o *LayerPost) GetKeyOk() (*string, bool)

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

SetKey

func (o *LayerPost) SetKey(v string)

SetKey sets Key field to given value.

GetName

func (o *LayerPost) GetName() string

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

GetNameOk

func (o *LayerPost) 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 *LayerPost) SetName(v string)

SetName sets Name field to given value.

GetDescription

func (o *LayerPost) GetDescription() string

GetDescription returns the Description field if non-nil, zero value otherwise.

GetDescriptionOk

func (o *LayerPost) GetDescriptionOk() (*string, bool)

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

SetDescription

func (o *LayerPost) SetDescription(v string)

SetDescription sets Description field to given value.

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