SFObject

class SFObject extends Element

Class SFObject

Properties

protected stdClass $_data from Element

Methods

public __construct(stdClass $data) Element constructor. from Element
public bool __isset(string $name) No description from Element
public mixed __get(string $name) No description from Element
protected mixed _wrap(mixed $elem) No description from Element

Details

in Element at line 24

__construct()

public __construct(stdClass $data)

Element constructor.

Parameters

stdClass $data
in Element at line 33

__isset()

public bool __isset(string $name)

Parameters

string $name

Return Value

bool
in Element at line 42

__get()

public mixed __get(string $name)

Parameters

string $name

Return Value

mixed
in Element at line 54

_wrap()

protected mixed _wrap(mixed $elem)

Parameters

mixed $elem

Return Value

mixed

Source code

<?php

namespace SFClient\SalesForce;

use SFClient\Element;

/**
 * Class SFObject
 * @package SFClient\SalesForce
 * @see Element
 */
class SFObject extends Element {}