ServiceInformation
in package
implements
ModelInterface, ArrayAccess
ServiceInformation Class Doc Comment
Tags
Interfaces, Classes, Traits and Enums
- ModelInterface
- Interface abstracting model access.
- ArrayAccess
Table of Contents
- DISCRIMINATOR = null
- $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
- getBuildBranch() : string|null
- Gets build_branch
- getBuildBranchDeployedDateTime() : string|null
- Gets build_branch_deployed_date_time
- getBuildSha() : string|null
- Gets build_sha
- getBuildVersion() : string|null
- Gets build_version
- getLinkedSites() : array<string|int, ?string>
- Gets linked_sites
- getModelName() : string
- The original name of the model.
- getServiceVersions() : array<string|int, ServiceVersion>
- Gets service_versions
- getters() : array<string|int, mixed>
- Array of attributes to getter functions (for serialization of requests)
- 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.
- setBuildBranch() : $this
- Sets build_branch
- setBuildBranchDeployedDateTime() : $this
- Sets build_branch_deployed_date_time
- setBuildSha() : $this
- Sets build_sha
- setBuildVersion() : $this
- Sets build_version
- setLinkedSites() : $this
- Sets linked_sites
- setServiceVersions() : $this
- Sets service_versions
- setters() : array<string|int, mixed>
- Array of attributes to setter functions (for deserialization of responses)
- 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
DISCRIMINATOR
public
mixed
DISCRIMINATOR
= null
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
= ['build_branch' => 'buildBranch', 'build_branch_deployed_date_time' => 'buildBranchDeployedDateTime', 'build_sha' => 'buildSHA', 'build_version' => 'buildVersion', 'linked_sites' => 'linkedSites', 'service_versions' => 'serviceVersions']
$container
Associative array for storing property values
protected
array<string|int, mixed>
$container
= []
$getters
Array of attributes to getter functions (for serialization of requests)
protected
static array<string|int, string>
$getters
= ['build_branch' => 'getBuildBranch', 'build_branch_deployed_date_time' => 'getBuildBranchDeployedDateTime', 'build_sha' => 'getBuildSha', 'build_version' => 'getBuildVersion', 'linked_sites' => 'getLinkedSites', 'service_versions' => 'getServiceVersions']
$setters
Array of attributes to setter functions (for deserialization of responses)
protected
static array<string|int, string>
$setters
= ['build_branch' => 'setBuildBranch', 'build_branch_deployed_date_time' => 'setBuildBranchDeployedDateTime', 'build_sha' => 'setBuildSha', 'build_version' => 'setBuildVersion', 'linked_sites' => 'setLinkedSites', 'service_versions' => 'setServiceVersions']
$swaggerFormats
Array of property to format mappings. Used for (de)serialization
protected
static array<string|int, string>
$swaggerFormats
= ['build_branch' => null, 'build_branch_deployed_date_time' => null, 'build_sha' => null, 'build_version' => null, 'linked_sites' => null, 'service_versions' => null]
$swaggerModelName
The original name of the model.
protected
static string
$swaggerModelName
= 'serviceInformation'
$swaggerTypes
Array of property to type mappings. Used for (de)serialization
protected
static array<string|int, string>
$swaggerTypes
= ['build_branch' => '?string', 'build_branch_deployed_date_time' => '?string', 'build_sha' => '?string', 'build_version' => '?string', 'linked_sites' => '?string[]', 'service_versions' => '\\DocuSign\\eSign\\Model\\ServiceVersion[]']
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 —__toString()
Gets the string presentation of the object
public
__toString() : string
Return values
string —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> —getBuildBranch()
Gets build_branch
public
getBuildBranch() : string|null
Return values
string|null —getBuildBranchDeployedDateTime()
Gets build_branch_deployed_date_time
public
getBuildBranchDeployedDateTime() : string|null
Return values
string|null —getBuildSha()
Gets build_sha
public
getBuildSha() : string|null
Return values
string|null —getBuildVersion()
Gets build_version
public
getBuildVersion() : string|null
Return values
string|null —getLinkedSites()
Gets linked_sites
public
getLinkedSites() : array<string|int, ?string>
Return values
array<string|int, ?string> —getModelName()
The original name of the model.
public
getModelName() : string
Return values
string —getServiceVersions()
Gets service_versions
public
getServiceVersions() : array<string|int, ServiceVersion>
Return values
array<string|int, ServiceVersion> —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
offsetExists()
Returns true if offset exists. False otherwise.
public
offsetExists(int $offset) : bool
Parameters
- $offset : int
-
Offset
Return values
bool —offsetGet()
Gets offset.
public
offsetGet(int $offset) : mixed
Parameters
- $offset : int
-
Offset
Return values
mixed —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 —offsetUnset()
Unsets offset.
public
offsetUnset(int $offset) : void
Parameters
- $offset : int
-
Offset
Return values
void —setBuildBranch()
Sets build_branch
public
setBuildBranch(string|null $build_branch) : $this
Parameters
- $build_branch : string|null
-
Reserved: TBD
Return values
$this —setBuildBranchDeployedDateTime()
Sets build_branch_deployed_date_time
public
setBuildBranchDeployedDateTime(string|null $build_branch_deployed_date_time) : $this
Parameters
- $build_branch_deployed_date_time : string|null
-
Reserved: TBD
Return values
$this —setBuildSha()
Sets build_sha
public
setBuildSha(string|null $build_sha) : $this
Parameters
- $build_sha : string|null
-
Reserved: TBD
Return values
$this —setBuildVersion()
Sets build_version
public
setBuildVersion(string|null $build_version) : $this
Parameters
- $build_version : string|null
-
Reserved: TBD
Return values
$this —setLinkedSites()
Sets linked_sites
public
setLinkedSites(array<string|int, ?string> $linked_sites) : $this
Parameters
- $linked_sites : array<string|int, ?string>
Return values
$this —setServiceVersions()
Sets service_versions
public
setServiceVersions(array<string|int, ServiceVersion> $service_versions) : $this
Parameters
- $service_versions : array<string|int, ServiceVersion>
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> —valid()
Validate all the properties in the model return true if all passed
public
valid() : bool
Return values
bool —True if all properties are valid