datarepository

package
v0.0.0-...-444540b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 24, 2022 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var AllowedBandwidthEnumValues = []Bandwidth{
	"uav_streaming",
	"uav_lowpowermode",
}

All allowed values of Bandwidth enum

Functions

This section is empty.

Types

type ApiError

type ApiError struct {
	Error *string `json:"error,omitempty" yaml:"error" bson:"error" mapstructure:"Error"`
}

ApiError struct for ApiError

func NewApiError

func NewApiError() *ApiError

NewApiError instantiates a new ApiError 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

func NewApiErrorWithDefaults

func NewApiErrorWithDefaults() *ApiError

NewApiErrorWithDefaults instantiates a new ApiError 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

func (*ApiError) GetError

func (o *ApiError) GetError() string

GetError returns the Error field value if set, zero value otherwise.

func (*ApiError) GetErrorOk

func (o *ApiError) GetErrorOk() (*string, bool)

GetErrorOk returns a tuple with the Error field value if set, nil otherwise and a boolean to check if the value has been set.

func (*ApiError) HasError

func (o *ApiError) HasError() bool

HasError returns a boolean if a field has been set.

func (ApiError) MarshalJSON

func (o ApiError) MarshalJSON() ([]byte, error)

func (*ApiError) SetError

func (o *ApiError) SetError(v string)

SetError gets a reference to the given string and assigns it to the Error field.

type Bandwidth

type Bandwidth string

Bandwidth the model 'Bandwidth'

const (
	BANDWIDTH_STREAMING    Bandwidth = "uav_streaming"
	BANDWIDTH_LOWPOWERMODE Bandwidth = "uav_lowpowermode"
)

List of Bandwidth

func NewBandwidthFromValue

func NewBandwidthFromValue(v string) (*Bandwidth, error)

NewBandwidthFromValue returns a pointer to a valid Bandwidth for the value passed as argument, or an error if the value passed is not allowed by the enum

func (Bandwidth) IsValid

func (v Bandwidth) IsValid() bool

IsValid return true if the value is valid for the enum, false otherwise

func (Bandwidth) Ptr

func (v Bandwidth) Ptr() *Bandwidth

Ptr returns reference to Bandwidth value

func (*Bandwidth) UnmarshalJSON

func (v *Bandwidth) UnmarshalJSON(src []byte) error

type BandwidthResponse

type BandwidthResponse struct {
	Id string `json:"id" yaml:"id" bson:"id" mapstructure:"Id"`
}

BandwidthResponse struct for BandwidthResponse

func NewBandwidthResponse

func NewBandwidthResponse(id string) *BandwidthResponse

NewBandwidthResponse instantiates a new BandwidthResponse 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

func NewBandwidthResponseWithDefaults

func NewBandwidthResponseWithDefaults() *BandwidthResponse

NewBandwidthResponseWithDefaults instantiates a new BandwidthResponse 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

func (*BandwidthResponse) GetId

func (o *BandwidthResponse) GetId() string

GetId returns the Id field value

func (*BandwidthResponse) GetIdOk

func (o *BandwidthResponse) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (BandwidthResponse) MarshalJSON

func (o BandwidthResponse) MarshalJSON() ([]byte, error)

func (*BandwidthResponse) SetId

func (o *BandwidthResponse) SetId(v string)

SetId sets field value

type BandwidthUpdate

type BandwidthUpdate struct {
	Id        *string    `json:"id,omitempty" yaml:"id" bson:"id" mapstructure:"Id"`
	Bandwidth *Bandwidth `json:"bandwidth,omitempty" yaml:"bandwidth" bson:"bandwidth" mapstructure:"Bandwidth"`
}

BandwidthUpdate struct for BandwidthUpdate

func NewBandwidthUpdate

func NewBandwidthUpdate() *BandwidthUpdate

NewBandwidthUpdate instantiates a new BandwidthUpdate 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

func NewBandwidthUpdateWithDefaults

func NewBandwidthUpdateWithDefaults() *BandwidthUpdate

NewBandwidthUpdateWithDefaults instantiates a new BandwidthUpdate 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

func (*BandwidthUpdate) GetBandwidth

func (o *BandwidthUpdate) GetBandwidth() Bandwidth

GetBandwidth returns the Bandwidth field value if set, zero value otherwise.

func (*BandwidthUpdate) GetBandwidthOk

func (o *BandwidthUpdate) GetBandwidthOk() (*Bandwidth, bool)

GetBandwidthOk returns a tuple with the Bandwidth field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BandwidthUpdate) GetId

func (o *BandwidthUpdate) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*BandwidthUpdate) GetIdOk

func (o *BandwidthUpdate) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*BandwidthUpdate) HasBandwidth

func (o *BandwidthUpdate) HasBandwidth() bool

HasBandwidth returns a boolean if a field has been set.

func (*BandwidthUpdate) HasId

func (o *BandwidthUpdate) HasId() bool

HasId returns a boolean if a field has been set.

func (BandwidthUpdate) MarshalJSON

func (o BandwidthUpdate) MarshalJSON() ([]byte, error)

func (*BandwidthUpdate) SetBandwidth

func (o *BandwidthUpdate) SetBandwidth(v Bandwidth)

SetBandwidth gets a reference to the given Bandwidth and assigns it to the Bandwidth field.

func (*BandwidthUpdate) SetId

func (o *BandwidthUpdate) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

type CustomLimits

type CustomLimits struct {
	Id *string `json:"id,omitempty" yaml:"id" bson:"id" mapstructure:"Id"`
	// Upload limit in bits per second
	Upload *int32 `json:"upload,omitempty" yaml:"upload" bson:"upload" mapstructure:"Upload"`
	// Download limit in bits per second
	Download *int32 `json:"download,omitempty" yaml:"download" bson:"download" mapstructure:"Download"`
}

CustomLimits struct for CustomLimits

func NewCustomLimits

func NewCustomLimits() *CustomLimits

NewCustomLimits instantiates a new CustomLimits 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

func NewCustomLimitsWithDefaults

func NewCustomLimitsWithDefaults() *CustomLimits

NewCustomLimitsWithDefaults instantiates a new CustomLimits 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

func (*CustomLimits) GetDownload

func (o *CustomLimits) GetDownload() int32

GetDownload returns the Download field value if set, zero value otherwise.

func (*CustomLimits) GetDownloadOk

func (o *CustomLimits) GetDownloadOk() (*int32, bool)

GetDownloadOk returns a tuple with the Download field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomLimits) GetId

func (o *CustomLimits) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*CustomLimits) GetIdOk

func (o *CustomLimits) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomLimits) GetUpload

func (o *CustomLimits) GetUpload() int32

GetUpload returns the Upload field value if set, zero value otherwise.

func (*CustomLimits) GetUploadOk

func (o *CustomLimits) GetUploadOk() (*int32, bool)

GetUploadOk returns a tuple with the Upload field value if set, nil otherwise and a boolean to check if the value has been set.

func (*CustomLimits) HasDownload

func (o *CustomLimits) HasDownload() bool

HasDownload returns a boolean if a field has been set.

func (*CustomLimits) HasId

func (o *CustomLimits) HasId() bool

HasId returns a boolean if a field has been set.

func (*CustomLimits) HasUpload

func (o *CustomLimits) HasUpload() bool

HasUpload returns a boolean if a field has been set.

func (CustomLimits) MarshalJSON

func (o CustomLimits) MarshalJSON() ([]byte, error)

func (*CustomLimits) SetDownload

func (o *CustomLimits) SetDownload(v int32)

SetDownload gets a reference to the given int32 and assigns it to the Download field.

func (*CustomLimits) SetId

func (o *CustomLimits) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*CustomLimits) SetUpload

func (o *CustomLimits) SetUpload(v int32)

SetUpload gets a reference to the given int32 and assigns it to the Upload field.

type HelloResponses

type HelloResponses struct {
	Service *string `json:"service,omitempty" yaml:"service" bson:"service" mapstructure:"Service"`
}

HelloResponses struct for HelloResponses

func NewHelloResponses

func NewHelloResponses() *HelloResponses

NewHelloResponses instantiates a new HelloResponses 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

func NewHelloResponsesWithDefaults

func NewHelloResponsesWithDefaults() *HelloResponses

NewHelloResponsesWithDefaults instantiates a new HelloResponses 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

func (*HelloResponses) GetService

func (o *HelloResponses) GetService() string

GetService returns the Service field value if set, zero value otherwise.

func (*HelloResponses) GetServiceOk

func (o *HelloResponses) GetServiceOk() (*string, bool)

GetServiceOk returns a tuple with the Service field value if set, nil otherwise and a boolean to check if the value has been set.

func (*HelloResponses) HasService

func (o *HelloResponses) HasService() bool

HasService returns a boolean if a field has been set.

func (HelloResponses) MarshalJSON

func (o HelloResponses) MarshalJSON() ([]byte, error)

func (*HelloResponses) SetService

func (o *HelloResponses) SetService(v string)

SetService gets a reference to the given string and assigns it to the Service field.

type LocationDetails

type LocationDetails struct {
	AgeOfLocationInfo *string `json:"ageOfLocationInfo,omitempty" yaml:"ageOfLocationInfo" bson:"ageOfLocationInfo" mapstructure:"AgeOfLocationInfo"`
	TrackingAreaId    *string `json:"trackingAreaId,omitempty" yaml:"trackingAreaId" bson:"trackingAreaId" mapstructure:"TrackingAreaId"`
	PlmnId            *string `json:"plmnId,omitempty" yaml:"plmnId" bson:"plmnId" mapstructure:"PlmnId"`
	Lat               *string `json:"lat,omitempty" yaml:"lat" bson:"lat" mapstructure:"Lat"`
	Long              *string `json:"long,omitempty" yaml:"long" bson:"long" mapstructure:"Long"`
	Elev              *string `json:"elev,omitempty" yaml:"elev" bson:"elev" mapstructure:"Elev"`
}

LocationDetails struct for LocationDetails

func NewLocationDetails

func NewLocationDetails() *LocationDetails

NewLocationDetails instantiates a new LocationDetails 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

func NewLocationDetailsWithDefaults

func NewLocationDetailsWithDefaults() *LocationDetails

NewLocationDetailsWithDefaults instantiates a new LocationDetails 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

func (*LocationDetails) GetAgeOfLocationInfo

func (o *LocationDetails) GetAgeOfLocationInfo() string

GetAgeOfLocationInfo returns the AgeOfLocationInfo field value if set, zero value otherwise.

func (*LocationDetails) GetAgeOfLocationInfoOk

func (o *LocationDetails) GetAgeOfLocationInfoOk() (*string, bool)

GetAgeOfLocationInfoOk returns a tuple with the AgeOfLocationInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationDetails) GetElev

func (o *LocationDetails) GetElev() string

GetElev returns the Elev field value if set, zero value otherwise.

func (*LocationDetails) GetElevOk

func (o *LocationDetails) GetElevOk() (*string, bool)

GetElevOk returns a tuple with the Elev field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationDetails) GetLat

func (o *LocationDetails) GetLat() string

GetLat returns the Lat field value if set, zero value otherwise.

func (*LocationDetails) GetLatOk

func (o *LocationDetails) GetLatOk() (*string, bool)

GetLatOk returns a tuple with the Lat field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationDetails) GetLong

func (o *LocationDetails) GetLong() string

GetLong returns the Long field value if set, zero value otherwise.

func (*LocationDetails) GetLongOk

func (o *LocationDetails) GetLongOk() (*string, bool)

GetLongOk returns a tuple with the Long field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationDetails) GetPlmnId

func (o *LocationDetails) GetPlmnId() string

GetPlmnId returns the PlmnId field value if set, zero value otherwise.

func (*LocationDetails) GetPlmnIdOk

func (o *LocationDetails) GetPlmnIdOk() (*string, bool)

GetPlmnIdOk returns a tuple with the PlmnId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationDetails) GetTrackingAreaId

func (o *LocationDetails) GetTrackingAreaId() string

GetTrackingAreaId returns the TrackingAreaId field value if set, zero value otherwise.

func (*LocationDetails) GetTrackingAreaIdOk

func (o *LocationDetails) GetTrackingAreaIdOk() (*string, bool)

GetTrackingAreaIdOk returns a tuple with the TrackingAreaId field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationDetails) HasAgeOfLocationInfo

func (o *LocationDetails) HasAgeOfLocationInfo() bool

HasAgeOfLocationInfo returns a boolean if a field has been set.

func (*LocationDetails) HasElev

func (o *LocationDetails) HasElev() bool

HasElev returns a boolean if a field has been set.

func (*LocationDetails) HasLat

func (o *LocationDetails) HasLat() bool

HasLat returns a boolean if a field has been set.

func (*LocationDetails) HasLong

func (o *LocationDetails) HasLong() bool

HasLong returns a boolean if a field has been set.

func (*LocationDetails) HasPlmnId

func (o *LocationDetails) HasPlmnId() bool

HasPlmnId returns a boolean if a field has been set.

func (*LocationDetails) HasTrackingAreaId

func (o *LocationDetails) HasTrackingAreaId() bool

HasTrackingAreaId returns a boolean if a field has been set.

func (LocationDetails) MarshalJSON

func (o LocationDetails) MarshalJSON() ([]byte, error)

func (*LocationDetails) SetAgeOfLocationInfo

func (o *LocationDetails) SetAgeOfLocationInfo(v string)

SetAgeOfLocationInfo gets a reference to the given string and assigns it to the AgeOfLocationInfo field.

func (*LocationDetails) SetElev

func (o *LocationDetails) SetElev(v string)

SetElev gets a reference to the given string and assigns it to the Elev field.

func (*LocationDetails) SetLat

func (o *LocationDetails) SetLat(v string)

SetLat gets a reference to the given string and assigns it to the Lat field.

func (*LocationDetails) SetLong

func (o *LocationDetails) SetLong(v string)

SetLong gets a reference to the given string and assigns it to the Long field.

func (*LocationDetails) SetPlmnId

func (o *LocationDetails) SetPlmnId(v string)

SetPlmnId gets a reference to the given string and assigns it to the PlmnId field.

func (*LocationDetails) SetTrackingAreaId

func (o *LocationDetails) SetTrackingAreaId(v string)

SetTrackingAreaId gets a reference to the given string and assigns it to the TrackingAreaId field.

type LocationResponse

type LocationResponse struct {
	EventTime    *time.Time       `json:"eventTime,omitempty" yaml:"eventTime" bson:"eventTime" mapstructure:"EventTime"`
	Id           *string          `json:"id,omitempty" yaml:"id" bson:"id" mapstructure:"Id"`
	LocationInfo *LocationDetails `json:"locationInfo,omitempty" yaml:"locationInfo" bson:"locationInfo" mapstructure:"LocationInfo"`
}

LocationResponse struct for LocationResponse

func NewLocationResponse

func NewLocationResponse() *LocationResponse

NewLocationResponse instantiates a new LocationResponse 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

func NewLocationResponseWithDefaults

func NewLocationResponseWithDefaults() *LocationResponse

NewLocationResponseWithDefaults instantiates a new LocationResponse 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

func (*LocationResponse) GetEventTime

func (o *LocationResponse) GetEventTime() time.Time

GetEventTime returns the EventTime field value if set, zero value otherwise.

func (*LocationResponse) GetEventTimeOk

func (o *LocationResponse) GetEventTimeOk() (*time.Time, bool)

GetEventTimeOk returns a tuple with the EventTime field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationResponse) GetId

func (o *LocationResponse) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*LocationResponse) GetIdOk

func (o *LocationResponse) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationResponse) GetLocationInfo

func (o *LocationResponse) GetLocationInfo() LocationDetails

GetLocationInfo returns the LocationInfo field value if set, zero value otherwise.

func (*LocationResponse) GetLocationInfoOk

func (o *LocationResponse) GetLocationInfoOk() (*LocationDetails, bool)

GetLocationInfoOk returns a tuple with the LocationInfo field value if set, nil otherwise and a boolean to check if the value has been set.

func (*LocationResponse) HasEventTime

func (o *LocationResponse) HasEventTime() bool

HasEventTime returns a boolean if a field has been set.

func (*LocationResponse) HasId

func (o *LocationResponse) HasId() bool

HasId returns a boolean if a field has been set.

func (*LocationResponse) HasLocationInfo

func (o *LocationResponse) HasLocationInfo() bool

HasLocationInfo returns a boolean if a field has been set.

func (LocationResponse) MarshalJSON

func (o LocationResponse) MarshalJSON() ([]byte, error)

func (*LocationResponse) SetEventTime

func (o *LocationResponse) SetEventTime(v time.Time)

SetEventTime gets a reference to the given time.Time and assigns it to the EventTime field.

func (*LocationResponse) SetId

func (o *LocationResponse) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*LocationResponse) SetLocationInfo

func (o *LocationResponse) SetLocationInfo(v LocationDetails)

SetLocationInfo gets a reference to the given LocationDetails and assigns it to the LocationInfo field.

type NullableApiError

type NullableApiError struct {
	// contains filtered or unexported fields
}

func NewNullableApiError

func NewNullableApiError(val *ApiError) *NullableApiError

func (NullableApiError) Get

func (v NullableApiError) Get() *ApiError

func (NullableApiError) IsSet

func (v NullableApiError) IsSet() bool

func (NullableApiError) MarshalJSON

func (v NullableApiError) MarshalJSON() ([]byte, error)

func (*NullableApiError) Set

func (v *NullableApiError) Set(val *ApiError)

func (*NullableApiError) UnmarshalJSON

func (v *NullableApiError) UnmarshalJSON(src []byte) error

func (*NullableApiError) Unset

func (v *NullableApiError) Unset()

type NullableBandwidth

type NullableBandwidth struct {
	// contains filtered or unexported fields
}

func NewNullableBandwidth

func NewNullableBandwidth(val *Bandwidth) *NullableBandwidth

func (NullableBandwidth) Get

func (v NullableBandwidth) Get() *Bandwidth

func (NullableBandwidth) IsSet

func (v NullableBandwidth) IsSet() bool

func (NullableBandwidth) MarshalJSON

func (v NullableBandwidth) MarshalJSON() ([]byte, error)

func (*NullableBandwidth) Set

func (v *NullableBandwidth) Set(val *Bandwidth)

func (*NullableBandwidth) UnmarshalJSON

func (v *NullableBandwidth) UnmarshalJSON(src []byte) error

func (*NullableBandwidth) Unset

func (v *NullableBandwidth) Unset()

type NullableBandwidthResponse

type NullableBandwidthResponse struct {
	// contains filtered or unexported fields
}

func NewNullableBandwidthResponse

func NewNullableBandwidthResponse(val *BandwidthResponse) *NullableBandwidthResponse

func (NullableBandwidthResponse) Get

func (NullableBandwidthResponse) IsSet

func (v NullableBandwidthResponse) IsSet() bool

func (NullableBandwidthResponse) MarshalJSON

func (v NullableBandwidthResponse) MarshalJSON() ([]byte, error)

func (*NullableBandwidthResponse) Set

func (*NullableBandwidthResponse) UnmarshalJSON

func (v *NullableBandwidthResponse) UnmarshalJSON(src []byte) error

func (*NullableBandwidthResponse) Unset

func (v *NullableBandwidthResponse) Unset()

type NullableBandwidthUpdate

type NullableBandwidthUpdate struct {
	// contains filtered or unexported fields
}

func NewNullableBandwidthUpdate

func NewNullableBandwidthUpdate(val *BandwidthUpdate) *NullableBandwidthUpdate

func (NullableBandwidthUpdate) Get

func (NullableBandwidthUpdate) IsSet

func (v NullableBandwidthUpdate) IsSet() bool

func (NullableBandwidthUpdate) MarshalJSON

func (v NullableBandwidthUpdate) MarshalJSON() ([]byte, error)

func (*NullableBandwidthUpdate) Set

func (*NullableBandwidthUpdate) UnmarshalJSON

func (v *NullableBandwidthUpdate) UnmarshalJSON(src []byte) error

func (*NullableBandwidthUpdate) Unset

func (v *NullableBandwidthUpdate) Unset()

type NullableCustomLimits

type NullableCustomLimits struct {
	// contains filtered or unexported fields
}

func NewNullableCustomLimits

func NewNullableCustomLimits(val *CustomLimits) *NullableCustomLimits

func (NullableCustomLimits) Get

func (NullableCustomLimits) IsSet

func (v NullableCustomLimits) IsSet() bool

func (NullableCustomLimits) MarshalJSON

func (v NullableCustomLimits) MarshalJSON() ([]byte, error)

func (*NullableCustomLimits) Set

func (v *NullableCustomLimits) Set(val *CustomLimits)

func (*NullableCustomLimits) UnmarshalJSON

func (v *NullableCustomLimits) UnmarshalJSON(src []byte) error

func (*NullableCustomLimits) Unset

func (v *NullableCustomLimits) Unset()

type NullableHelloResponses

type NullableHelloResponses struct {
	// contains filtered or unexported fields
}

func NewNullableHelloResponses

func NewNullableHelloResponses(val *HelloResponses) *NullableHelloResponses

func (NullableHelloResponses) Get

func (NullableHelloResponses) IsSet

func (v NullableHelloResponses) IsSet() bool

func (NullableHelloResponses) MarshalJSON

func (v NullableHelloResponses) MarshalJSON() ([]byte, error)

func (*NullableHelloResponses) Set

func (*NullableHelloResponses) UnmarshalJSON

func (v *NullableHelloResponses) UnmarshalJSON(src []byte) error

func (*NullableHelloResponses) Unset

func (v *NullableHelloResponses) Unset()

type NullableLocationDetails

type NullableLocationDetails struct {
	// contains filtered or unexported fields
}

func NewNullableLocationDetails

func NewNullableLocationDetails(val *LocationDetails) *NullableLocationDetails

func (NullableLocationDetails) Get

func (NullableLocationDetails) IsSet

func (v NullableLocationDetails) IsSet() bool

func (NullableLocationDetails) MarshalJSON

func (v NullableLocationDetails) MarshalJSON() ([]byte, error)

func (*NullableLocationDetails) Set

func (*NullableLocationDetails) UnmarshalJSON

func (v *NullableLocationDetails) UnmarshalJSON(src []byte) error

func (*NullableLocationDetails) Unset

func (v *NullableLocationDetails) Unset()

type NullableLocationResponse

type NullableLocationResponse struct {
	// contains filtered or unexported fields
}

func NewNullableLocationResponse

func NewNullableLocationResponse(val *LocationResponse) *NullableLocationResponse

func (NullableLocationResponse) Get

func (NullableLocationResponse) IsSet

func (v NullableLocationResponse) IsSet() bool

func (NullableLocationResponse) MarshalJSON

func (v NullableLocationResponse) MarshalJSON() ([]byte, error)

func (*NullableLocationResponse) Set

func (*NullableLocationResponse) UnmarshalJSON

func (v *NullableLocationResponse) UnmarshalJSON(src []byte) error

func (*NullableLocationResponse) Unset

func (v *NullableLocationResponse) Unset()

type NullableSubscriberDetails

type NullableSubscriberDetails struct {
	// contains filtered or unexported fields
}

func NewNullableSubscriberDetails

func NewNullableSubscriberDetails(val *SubscriberDetails) *NullableSubscriberDetails

func (NullableSubscriberDetails) Get

func (NullableSubscriberDetails) IsSet

func (v NullableSubscriberDetails) IsSet() bool

func (NullableSubscriberDetails) MarshalJSON

func (v NullableSubscriberDetails) MarshalJSON() ([]byte, error)

func (*NullableSubscriberDetails) Set

func (*NullableSubscriberDetails) UnmarshalJSON

func (v *NullableSubscriberDetails) UnmarshalJSON(src []byte) error

func (*NullableSubscriberDetails) Unset

func (v *NullableSubscriberDetails) Unset()

type NullableSubscriberId

type NullableSubscriberId struct {
	// contains filtered or unexported fields
}

func NewNullableSubscriberId

func NewNullableSubscriberId(val *SubscriberId) *NullableSubscriberId

func (NullableSubscriberId) Get

func (NullableSubscriberId) IsSet

func (v NullableSubscriberId) IsSet() bool

func (NullableSubscriberId) MarshalJSON

func (v NullableSubscriberId) MarshalJSON() ([]byte, error)

func (*NullableSubscriberId) Set

func (v *NullableSubscriberId) Set(val *SubscriberId)

func (*NullableSubscriberId) UnmarshalJSON

func (v *NullableSubscriberId) UnmarshalJSON(src []byte) error

func (*NullableSubscriberId) Unset

func (v *NullableSubscriberId) Unset()

type SubscriberDetails

type SubscriberDetails struct {
	Id     *string `json:"id,omitempty" yaml:"id" bson:"id" mapstructure:"Id"`
	Imsi   *string `json:"imsi,omitempty" yaml:"imsi" bson:"imsi" mapstructure:"Imsi"`
	Msisdn *string `json:"msisdn,omitempty" yaml:"msisdn" bson:"msisdn" mapstructure:"Msisdn"`
}

SubscriberDetails struct for SubscriberDetails

func NewSubscriberDetails

func NewSubscriberDetails() *SubscriberDetails

NewSubscriberDetails instantiates a new SubscriberDetails 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

func NewSubscriberDetailsWithDefaults

func NewSubscriberDetailsWithDefaults() *SubscriberDetails

NewSubscriberDetailsWithDefaults instantiates a new SubscriberDetails 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

func (*SubscriberDetails) GetId

func (o *SubscriberDetails) GetId() string

GetId returns the Id field value if set, zero value otherwise.

func (*SubscriberDetails) GetIdOk

func (o *SubscriberDetails) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriberDetails) GetImsi

func (o *SubscriberDetails) GetImsi() string

GetImsi returns the Imsi field value if set, zero value otherwise.

func (*SubscriberDetails) GetImsiOk

func (o *SubscriberDetails) GetImsiOk() (*string, bool)

GetImsiOk returns a tuple with the Imsi field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriberDetails) GetMsisdn

func (o *SubscriberDetails) GetMsisdn() string

GetMsisdn returns the Msisdn field value if set, zero value otherwise.

func (*SubscriberDetails) GetMsisdnOk

func (o *SubscriberDetails) GetMsisdnOk() (*string, bool)

GetMsisdnOk returns a tuple with the Msisdn field value if set, nil otherwise and a boolean to check if the value has been set.

func (*SubscriberDetails) HasId

func (o *SubscriberDetails) HasId() bool

HasId returns a boolean if a field has been set.

func (*SubscriberDetails) HasImsi

func (o *SubscriberDetails) HasImsi() bool

HasImsi returns a boolean if a field has been set.

func (*SubscriberDetails) HasMsisdn

func (o *SubscriberDetails) HasMsisdn() bool

HasMsisdn returns a boolean if a field has been set.

func (SubscriberDetails) MarshalJSON

func (o SubscriberDetails) MarshalJSON() ([]byte, error)

func (*SubscriberDetails) SetId

func (o *SubscriberDetails) SetId(v string)

SetId gets a reference to the given string and assigns it to the Id field.

func (*SubscriberDetails) SetImsi

func (o *SubscriberDetails) SetImsi(v string)

SetImsi gets a reference to the given string and assigns it to the Imsi field.

func (*SubscriberDetails) SetMsisdn

func (o *SubscriberDetails) SetMsisdn(v string)

SetMsisdn gets a reference to the given string and assigns it to the Msisdn field.

type SubscriberId

type SubscriberId struct {
	Id string `json:"id" yaml:"id" bson:"id" mapstructure:"Id"`
}

SubscriberId struct for SubscriberId

func NewSubscriberId

func NewSubscriberId(id string) *SubscriberId

NewSubscriberId instantiates a new SubscriberId 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

func NewSubscriberIdWithDefaults

func NewSubscriberIdWithDefaults() *SubscriberId

NewSubscriberIdWithDefaults instantiates a new SubscriberId 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

func (*SubscriberId) GetId

func (o *SubscriberId) GetId() string

GetId returns the Id field value

func (*SubscriberId) GetIdOk

func (o *SubscriberId) GetIdOk() (*string, bool)

GetIdOk returns a tuple with the Id field value and a boolean to check if the value has been set.

func (SubscriberId) MarshalJSON

func (o SubscriberId) MarshalJSON() ([]byte, error)

func (*SubscriberId) SetId

func (o *SubscriberId) SetId(v string)

SetId sets field value

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL