FolderSharedItem
in package
implements
ModelInterface, ArrayAccess
FolderSharedItem 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
- getErrorDetails() : ErrorDetails
- Gets error_details
- getFolderId() : string|null
- Gets folder_id
- getModelName() : string
- The original name of the model.
- getName() : string|null
- Gets name
- getOwner() : UserInfo
- Gets owner
- getParentFolderId() : string|null
- Gets parent_folder_id
- getParentFolderUri() : string|null
- Gets parent_folder_uri
- getShared() : string|null
- Gets shared
- getSharedGroups() : array<string|int, MemberGroupSharedItem>
- Gets shared_groups
- getSharedUsers() : array<string|int, UserSharedItem>
- Gets shared_users
- getters() : array<string|int, mixed>
- Array of attributes to getter functions (for serialization of requests)
- getUri() : string|null
- Gets uri
- getUser() : UserInfo
- Gets user
- 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.
- setErrorDetails() : $this
- Sets error_details
- setFolderId() : $this
- Sets folder_id
- setName() : $this
- Sets name
- setOwner() : $this
- Sets owner
- setParentFolderId() : $this
- Sets parent_folder_id
- setParentFolderUri() : $this
- Sets parent_folder_uri
- setShared() : $this
- Sets shared
- setSharedGroups() : $this
- Sets shared_groups
- setSharedUsers() : $this
- Sets shared_users
- setters() : array<string|int, mixed>
- Array of attributes to setter functions (for deserialization of responses)
- setUri() : $this
- Sets uri
- setUser() : $this
- Sets user
- 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
= ['error_details' => 'errorDetails', 'folder_id' => 'folderId', 'name' => 'name', 'owner' => 'owner', 'parent_folder_id' => 'parentFolderId', 'parent_folder_uri' => 'parentFolderUri', 'shared' => 'shared', 'shared_groups' => 'sharedGroups', 'shared_users' => 'sharedUsers', 'uri' => 'uri', 'user' => 'user']
$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
= ['error_details' => 'getErrorDetails', 'folder_id' => 'getFolderId', 'name' => 'getName', 'owner' => 'getOwner', 'parent_folder_id' => 'getParentFolderId', 'parent_folder_uri' => 'getParentFolderUri', 'shared' => 'getShared', 'shared_groups' => 'getSharedGroups', 'shared_users' => 'getSharedUsers', 'uri' => 'getUri', 'user' => 'getUser']
$setters
Array of attributes to setter functions (for deserialization of responses)
protected
static array<string|int, string>
$setters
= ['error_details' => 'setErrorDetails', 'folder_id' => 'setFolderId', 'name' => 'setName', 'owner' => 'setOwner', 'parent_folder_id' => 'setParentFolderId', 'parent_folder_uri' => 'setParentFolderUri', 'shared' => 'setShared', 'shared_groups' => 'setSharedGroups', 'shared_users' => 'setSharedUsers', 'uri' => 'setUri', 'user' => 'setUser']
$swaggerFormats
Array of property to format mappings. Used for (de)serialization
protected
static array<string|int, string>
$swaggerFormats
= ['error_details' => null, 'folder_id' => null, 'name' => null, 'owner' => null, 'parent_folder_id' => null, 'parent_folder_uri' => null, 'shared' => null, 'shared_groups' => null, 'shared_users' => null, 'uri' => null, 'user' => null]
$swaggerModelName
The original name of the model.
protected
static string
$swaggerModelName
= 'folderSharedItem'
$swaggerTypes
Array of property to type mappings. Used for (de)serialization
protected
static array<string|int, string>
$swaggerTypes
= ['error_details' => '\\DocuSign\\eSign\\Model\\ErrorDetails', 'folder_id' => '?string', 'name' => '?string', 'owner' => '\\DocuSign\\eSign\\Model\\UserInfo', 'parent_folder_id' => '?string', 'parent_folder_uri' => '?string', 'shared' => '?string', 'shared_groups' => '\\DocuSign\\eSign\\Model\\MemberGroupSharedItem[]', 'shared_users' => '\\DocuSign\\eSign\\Model\\UserSharedItem[]', 'uri' => '?string', 'user' => '\\DocuSign\\eSign\\Model\\UserInfo']
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> —getErrorDetails()
Gets error_details
public
getErrorDetails() : ErrorDetails
Return values
ErrorDetails —getFolderId()
Gets folder_id
public
getFolderId() : string|null
Return values
string|null —getModelName()
The original name of the model.
public
getModelName() : string
Return values
string —getName()
Gets name
public
getName() : string|null
Return values
string|null —getOwner()
Gets owner
public
getOwner() : UserInfo
Return values
UserInfo —getParentFolderId()
Gets parent_folder_id
public
getParentFolderId() : string|null
Return values
string|null —getParentFolderUri()
Gets parent_folder_uri
public
getParentFolderUri() : string|null
Return values
string|null —getShared()
Gets shared
public
getShared() : string|null
Return values
string|null —getSharedGroups()
Gets shared_groups
public
getSharedGroups() : array<string|int, MemberGroupSharedItem>
Return values
array<string|int, MemberGroupSharedItem> —getSharedUsers()
Gets shared_users
public
getSharedUsers() : array<string|int, UserSharedItem>
Return values
array<string|int, UserSharedItem> —getters()
Array of attributes to getter functions (for serialization of requests)
public
static getters() : array<string|int, mixed>
Return values
array<string|int, mixed> —getUri()
Gets uri
public
getUri() : string|null
Return values
string|null —getUser()
Gets user
public
getUser() : UserInfo
Return values
UserInfo —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 —setErrorDetails()
Sets error_details
public
setErrorDetails(ErrorDetails $error_details) : $this
Parameters
- $error_details : ErrorDetails
-
Array or errors.
Return values
$this —setFolderId()
Sets folder_id
public
setFolderId(string|null $folder_id) : $this
Parameters
- $folder_id : string|null
Return values
$this —setName()
Sets name
public
setName(string|null $name) : $this
Parameters
- $name : string|null
Return values
$this —setOwner()
Sets owner
public
setOwner(UserInfo $owner) : $this
Parameters
- $owner : UserInfo
-
Information about the user who owns the folder.
Return values
$this —setParentFolderId()
Sets parent_folder_id
public
setParentFolderId(string|null $parent_folder_id) : $this
Parameters
- $parent_folder_id : string|null
Return values
$this —setParentFolderUri()
Sets parent_folder_uri
public
setParentFolderUri(string|null $parent_folder_uri) : $this
Parameters
- $parent_folder_uri : string|null
Return values
$this —setShared()
Sets shared
public
setShared(string|null $shared) : $this
Parameters
- $shared : string|null
-
When set to true, this custom tab is shared.
Return values
$this —setSharedGroups()
Sets shared_groups
public
setSharedGroups(array<string|int, MemberGroupSharedItem> $shared_groups) : $this
Parameters
- $shared_groups : array<string|int, MemberGroupSharedItem>
Return values
$this —setSharedUsers()
Sets shared_users
public
setSharedUsers(array<string|int, UserSharedItem> $shared_users) : $this
Parameters
- $shared_users : array<string|int, UserSharedItem>
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> —setUri()
Sets uri
public
setUri(string|null $uri) : $this
Parameters
- $uri : string|null
Return values
$this —setUser()
Sets user
public
setUser(UserInfo $user) : $this
Parameters
- $user : UserInfo
-
Information about the user associated with the folder.
Return values
$this —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