Documentation

UpdateNetworkWirelessBluetoothSettings implements ModelInterface, ArrayAccess

UpdateNetworkWirelessBluetoothSettings Class Doc Comment

Tags
category

Class

author

Swagger Codegen team

link
https://github.com/swagger-api/swagger-codegen

Interfaces, Classes and Traits

ModelInterface
Interface abstracting model access.
ArrayAccess

Table of Contents

DISCRIMINATOR  = null
MAJOR_MINOR_ASSIGNMENT_MODE_NON_UNIQUE  = 'Non-unique'
MAJOR_MINOR_ASSIGNMENT_MODE_UNIQUE  = 'Unique'
$attributeMap  : array<string|int, string>
Array of attributes where the key is the local name, and the value is the original name
$container  : array<string|int, mixed>
Associative array for storing property values
$getters  : array<string|int, string>
Array of attributes to getter functions (for serialization of requests)
$setters  : array<string|int, string>
Array of attributes to setter functions (for deserialization of responses)
$swaggerFormats  : array<string|int, string>
Array of property to format mappings. Used for (de)serialization
$swaggerModelName  : string
The original name of the model.
$swaggerTypes  : array<string|int, string>
Array of property to type mappings. Used for (de)serialization
__construct()  : mixed
Constructor
__toString()  : string
Gets the string presentation of the object
attributeMap()  : array<string|int, mixed>
Array of attributes where the key is the local name, and the value is the original name
getAdvertisingEnabled()  : bool
Gets advertising_enabled
getMajor()  : int
Gets major
getMajorMinorAssignmentMode()  : string
Gets major_minor_assignment_mode
getMajorMinorAssignmentModeAllowableValues()  : array<string|int, string>
Gets allowable values of the enum
getMinor()  : int
Gets minor
getModelName()  : string
The original name of the model.
getScanningEnabled()  : bool
Gets scanning_enabled
getters()  : array<string|int, mixed>
Array of attributes to getter functions (for serialization of requests)
getUuid()  : string
Gets uuid
listInvalidProperties()  : array<string|int, mixed>
Show all the invalid properties with reasons.
offsetExists()  : bool
Returns true if offset exists. False otherwise.
offsetGet()  : mixed
Gets offset.
offsetSet()  : void
Sets value based on offset.
offsetUnset()  : void
Unsets offset.
setAdvertisingEnabled()  : $this
Sets advertising_enabled
setMajor()  : $this
Sets major
setMajorMinorAssignmentMode()  : $this
Sets major_minor_assignment_mode
setMinor()  : $this
Sets minor
setScanningEnabled()  : $this
Sets scanning_enabled
setters()  : array<string|int, mixed>
Array of attributes to setter functions (for deserialization of responses)
setUuid()  : $this
Sets uuid
swaggerFormats()  : array<string|int, mixed>
Array of property to format mappings. Used for (de)serialization
swaggerTypes()  : array<string|int, mixed>
Array of property to type mappings. Used for (de)serialization
valid()  : bool
Validate all the properties in the model return true if all passed

Constants

Properties

$attributeMap

Array of attributes where the key is the local name, and the value is the original name

protected static array<string|int, string> $attributeMap = ['scanning_enabled' => 'scanningEnabled', 'advertising_enabled' => 'advertisingEnabled', 'uuid' => 'uuid', 'major_minor_assignment_mode' => 'majorMinorAssignmentMode', 'major' => 'major', 'minor' => 'minor']

$getters

Array of attributes to getter functions (for serialization of requests)

protected static array<string|int, string> $getters = ['scanning_enabled' => 'getScanningEnabled', 'advertising_enabled' => 'getAdvertisingEnabled', 'uuid' => 'getUuid', 'major_minor_assignment_mode' => 'getMajorMinorAssignmentMode', 'major' => 'getMajor', 'minor' => 'getMinor']

$setters

Array of attributes to setter functions (for deserialization of responses)

protected static array<string|int, string> $setters = ['scanning_enabled' => 'setScanningEnabled', 'advertising_enabled' => 'setAdvertisingEnabled', 'uuid' => 'setUuid', 'major_minor_assignment_mode' => 'setMajorMinorAssignmentMode', 'major' => 'setMajor', 'minor' => 'setMinor']

$swaggerFormats

Array of property to format mappings. Used for (de)serialization

protected static array<string|int, string> $swaggerFormats = ['scanning_enabled' => null, 'advertising_enabled' => null, 'uuid' => null, 'major_minor_assignment_mode' => null, 'major' => null, 'minor' => null]

$swaggerTypes

Array of property to type mappings. Used for (de)serialization

protected static array<string|int, string> $swaggerTypes = ['scanning_enabled' => 'bool', 'advertising_enabled' => 'bool', 'uuid' => 'string', 'major_minor_assignment_mode' => 'string', 'major' => 'int', 'minor' => 'int']

Methods

__construct()

Constructor

public __construct([array<string|int, mixed> $data = null ]) : mixed
Parameters
$data : array<string|int, mixed> = null

Associated array of property values initializing the model

Return values
mixed

attributeMap()

Array of attributes where the key is the local name, and the value is the original name

public static attributeMap() : array<string|int, mixed>
Return values
array<string|int, mixed>

getMajorMinorAssignmentModeAllowableValues()

Gets allowable values of the enum

public getMajorMinorAssignmentModeAllowableValues() : array<string|int, string>
Return values
array<string|int, string>

getters()

Array of attributes to getter functions (for serialization of requests)

public static getters() : array<string|int, mixed>
Return values
array<string|int, mixed>

listInvalidProperties()

Show all the invalid properties with reasons.

public listInvalidProperties() : array<string|int, mixed>
Return values
array<string|int, mixed>

invalid properties with reasons

offsetSet()

Sets value based on offset.

public offsetSet(int $offset, mixed $value) : void
Parameters
$offset : int

Offset

$value : mixed

Value to be set

Return values
void

setAdvertisingEnabled()

Sets advertising_enabled

public setAdvertisingEnabled(bool $advertising_enabled) : $this
Parameters
$advertising_enabled : bool

Whether APs will advertise beacons. (true, false)

Return values
$this

setMajor()

Sets major

public setMajor(int $major) : $this
Parameters
$major : int

The major number to be used in the beacon identifier. Only valid in 'Non-unique' mode.

Return values
$this

setMajorMinorAssignmentMode()

Sets major_minor_assignment_mode

public setMajorMinorAssignmentMode(string $major_minor_assignment_mode) : $this
Parameters
$major_minor_assignment_mode : string

The way major and minor number should be assigned to nodes in the network. ('Unique', 'Non-unique')

Return values
$this

setMinor()

Sets minor

public setMinor(int $minor) : $this
Parameters
$minor : int

The minor number to be used in the beacon identifier. Only valid in 'Non-unique' mode.

Return values
$this

setScanningEnabled()

Sets scanning_enabled

public setScanningEnabled(bool $scanning_enabled) : $this
Parameters
$scanning_enabled : bool

Whether APs will scan for Bluetooth enabled clients. (true, false)

Return values
$this

setters()

Array of attributes to setter functions (for deserialization of responses)

public static setters() : array<string|int, mixed>
Return values
array<string|int, mixed>

swaggerFormats()

Array of property to format mappings. Used for (de)serialization

public static swaggerFormats() : array<string|int, mixed>
Return values
array<string|int, mixed>

swaggerTypes()

Array of property to type mappings. Used for (de)serialization

public static swaggerTypes() : array<string|int, mixed>
Return values
array<string|int, mixed>

Search results