Skip to content

Latest commit

 

History

History
114 lines (61 loc) · 2.87 KB

NFTDataResponse.md

File metadata and controls

114 lines (61 loc) · 2.87 KB

NFTDataResponse

Properties

Name Type Description Notes
Id string
Issuer string
Metadata string
Owner string

Methods

NewNFTDataResponse

func NewNFTDataResponse(id string, issuer string, metadata string, owner string, ) *NFTDataResponse

NewNFTDataResponse instantiates a new NFTDataResponse 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

NewNFTDataResponseWithDefaults

func NewNFTDataResponseWithDefaults() *NFTDataResponse

NewNFTDataResponseWithDefaults instantiates a new NFTDataResponse 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 *NFTDataResponse) GetId() string

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

GetIdOk

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

SetId sets Id field to given value.

GetIssuer

func (o *NFTDataResponse) GetIssuer() string

GetIssuer returns the Issuer field if non-nil, zero value otherwise.

GetIssuerOk

func (o *NFTDataResponse) GetIssuerOk() (*string, bool)

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

SetIssuer

func (o *NFTDataResponse) SetIssuer(v string)

SetIssuer sets Issuer field to given value.

GetMetadata

func (o *NFTDataResponse) GetMetadata() string

GetMetadata returns the Metadata field if non-nil, zero value otherwise.

GetMetadataOk

func (o *NFTDataResponse) GetMetadataOk() (*string, bool)

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

SetMetadata

func (o *NFTDataResponse) SetMetadata(v string)

SetMetadata sets Metadata field to given value.

GetOwner

func (o *NFTDataResponse) GetOwner() string

GetOwner returns the Owner field if non-nil, zero value otherwise.

GetOwnerOk

func (o *NFTDataResponse) GetOwnerOk() (*string, bool)

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

SetOwner

func (o *NFTDataResponse) SetOwner(v string)

SetOwner sets Owner field to given value.

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