Skip to content

Latest commit

 

History

History
108 lines (59 loc) · 3.49 KB

AssetService.md

File metadata and controls

108 lines (59 loc) · 3.49 KB

AssetService

Properties

Name Type Description Notes
ClassId string The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data. The enum values provides the list of concrete types that can be instantiated from this abstract type.
ObjectType string The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property. The enum values provides the list of concrete types that can be instantiated from this abstract type.
Options Pointer to NullableMoBaseComplexType ServiceOptions captures configuration that is specific to a target type for a specific service. [optional]

Methods

NewAssetService

func NewAssetService(classId string, objectType string, ) *AssetService

NewAssetService instantiates a new AssetService 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

NewAssetServiceWithDefaults

func NewAssetServiceWithDefaults() *AssetService

NewAssetServiceWithDefaults instantiates a new AssetService 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

GetClassId

func (o *AssetService) GetClassId() string

GetClassId returns the ClassId field if non-nil, zero value otherwise.

GetClassIdOk

func (o *AssetService) GetClassIdOk() (*string, bool)

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

SetClassId

func (o *AssetService) SetClassId(v string)

SetClassId sets ClassId field to given value.

GetObjectType

func (o *AssetService) GetObjectType() string

GetObjectType returns the ObjectType field if non-nil, zero value otherwise.

GetObjectTypeOk

func (o *AssetService) GetObjectTypeOk() (*string, bool)

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

SetObjectType

func (o *AssetService) SetObjectType(v string)

SetObjectType sets ObjectType field to given value.

GetOptions

func (o *AssetService) GetOptions() MoBaseComplexType

GetOptions returns the Options field if non-nil, zero value otherwise.

GetOptionsOk

func (o *AssetService) GetOptionsOk() (*MoBaseComplexType, bool)

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

SetOptions

func (o *AssetService) SetOptions(v MoBaseComplexType)

SetOptions sets Options field to given value.

HasOptions

func (o *AssetService) HasOptions() bool

HasOptions returns a boolean if a field has been set.

SetOptionsNil

func (o *AssetService) SetOptionsNil(b bool)

SetOptionsNil sets the value for Options to be an explicit nil

UnsetOptions

func (o *AssetService) UnsetOptions()

UnsetOptions ensures that no value is present for Options, not even an explicit nil

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