class OrderProductTaxQuery extends ModelCriteria

Base class that represents a query for the 'orderproducttax' table.

Methods

__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\OrderProductTax', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\OrderProductTaxQuery object.

create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildOrderProductTaxQuery object.

OrderProductTax|array|mixed
findPk( mixed $key, ConnectionInterface $con = null)

Find object by primary key.

ObjectCollection|array|mixed
findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(12, 56, 832), $con);

filterByPrimaryKey( mixed $key)

Filter the query by primary key

filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

filterById( mixed $id = null, string $comparison = null)

Filter the query on the id column

filterByOrderProductId( mixed $orderProductId = null, string $comparison = null)

Filter the query on the orderproductid column

filterByTitle( string $title = null, string $comparison = null)

Filter the query on the title column

filterByDescription( string $description = null, string $comparison = null)

Filter the query on the description column

filterByAmount( mixed $amount = null, string $comparison = null)

Filter the query on the amount column

filterByPromoAmount( mixed $promoAmount = null, string $comparison = null)

Filter the query on the promo_amount column

filterByCreatedAt( mixed $createdAt = null, string $comparison = null)

Filter the query on the created_at column

filterByUpdatedAt( mixed $updatedAt = null, string $comparison = null)

Filter the query on the updated_at column

filterByOrderProduct( OrderProduct|ObjectCollection $orderProduct, string $comparison = null)

Filter the query by a related \Thelia\Model\OrderProduct object

joinOrderProduct( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the OrderProduct relation

useOrderProductQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the OrderProduct relation OrderProduct object

prune( OrderProductTax $orderProductTax = null)

Exclude object from result

int
doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the orderproducttax table.

int
delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildOrderProductTax or Criteria object OR a primary key value.

recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

recentlyCreated( int $nbDays = 7)

Filter by the latest created

lastUpdatedFirst()

Order by update date desc

firstUpdatedFirst()

Order by update date asc

lastCreatedFirst()

Order by create date desc

firstCreatedFirst()

Order by create date asc

ChildOrderProductTaxQuery
orderById($order = Criteria::ASC)

Order by the id column

ChildOrderProductTaxQuery
orderByOrderProductId($order = Criteria::ASC)

Order by the orderproductid column

ChildOrderProductTaxQuery
orderByTitle($order = Criteria::ASC)

Order by the title column

ChildOrderProductTaxQuery
orderByDescription($order = Criteria::ASC)

Order by the description column

ChildOrderProductTaxQuery
orderByAmount($order = Criteria::ASC)

Order by the amount column

ChildOrderProductTaxQuery
orderByPromoAmount($order = Criteria::ASC)

Order by the promo_amount column

ChildOrderProductTaxQuery
orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

ChildOrderProductTaxQuery
orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

ChildOrderProductTaxQuery
groupById()

Group by the id column

ChildOrderProductTaxQuery
groupByOrderProductId()

Group by the orderproductid column

ChildOrderProductTaxQuery
groupByTitle()

Group by the title column

ChildOrderProductTaxQuery
groupByDescription()

Group by the description column

ChildOrderProductTaxQuery
groupByAmount()

Group by the amount column

ChildOrderProductTaxQuery
groupByPromoAmount()

Group by the promo_amount column

ChildOrderProductTaxQuery
groupByCreatedAt()

Group by the created_at column

ChildOrderProductTaxQuery
groupByUpdatedAt()

Group by the updated_at column

ChildOrderProductTaxQuery
leftJoin($relation)

Adds a LEFT JOIN clause to the query

ChildOrderProductTaxQuery
rightJoin($relation)

Adds a RIGHT JOIN clause to the query

ChildOrderProductTaxQuery
innerJoin($relation)

Adds a INNER JOIN clause to the query

ChildOrderProductTaxQuery
leftJoinOrderProduct($relationAlias = null)

Adds a LEFT JOIN clause to the query using the OrderProduct relation

ChildOrderProductTaxQuery
rightJoinOrderProduct($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the OrderProduct relation

ChildOrderProductTaxQuery
innerJoinOrderProduct($relationAlias = null)

Adds a INNER JOIN clause to the query using the OrderProduct relation

ChildOrderProductTax
findOne( ConnectionInterface $con = null)

Return the first ChildOrderProductTax matching the query

ChildOrderProductTax
findOneOrCreate( ConnectionInterface $con = null)

Return the first ChildOrderProductTax matching the query, or a new ChildOrderProductTax object populated from the query conditions when no match is found

ChildOrderProductTax
findOneById( int $id)

Return the first ChildOrderProductTax filtered by the id column

ChildOrderProductTax
findOneByOrderProductId( int $order_product_id)

Return the first ChildOrderProductTax filtered by the orderproductid column

ChildOrderProductTax
findOneByTitle( string $title)

Return the first ChildOrderProductTax filtered by the title column

ChildOrderProductTax
findOneByDescription( string $description)

Return the first ChildOrderProductTax filtered by the description column

ChildOrderProductTax
findOneByAmount( string $amount)

Return the first ChildOrderProductTax filtered by the amount column

ChildOrderProductTax
findOneByPromoAmount( string $promo_amount)

Return the first ChildOrderProductTax filtered by the promo_amount column

ChildOrderProductTax
findOneByCreatedAt( string $created_at)

Return the first ChildOrderProductTax filtered by the created_at column

ChildOrderProductTax
findOneByUpdatedAt( string $updated_at)

Return the first ChildOrderProductTax filtered by the updated_at column

array
findById( int $id)

Return ChildOrderProductTax objects filtered by the id column

array
findByOrderProductId( int $order_product_id)

Return ChildOrderProductTax objects filtered by the orderproductid column

array
findByTitle( string $title)

Return ChildOrderProductTax objects filtered by the title column

array
findByDescription( string $description)

Return ChildOrderProductTax objects filtered by the description column

array
findByAmount( string $amount)

Return ChildOrderProductTax objects filtered by the amount column

array
findByPromoAmount( string $promo_amount)

Return ChildOrderProductTax objects filtered by the promo_amount column

array
findByCreatedAt( string $created_at)

Return ChildOrderProductTax objects filtered by the created_at column

array
findByUpdatedAt( string $updated_at)

Return ChildOrderProductTax objects filtered by the updated_at column

Details

at line 82
__construct( string $dbName = 'thelia', string $modelName = '\\Thelia\\Model\\OrderProductTax', string $modelAlias = null)

Initializes internal state of \Thelia\Model\Base\OrderProductTaxQuery object.

Parameters

string $dbName The database name
string $modelName The phpName of a model, e.g. 'Book'
string $modelAlias The alias for the model in this query, e.g. 'b'

at line 95
static OrderProductTaxQuery create( string $modelAlias = null, Criteria $criteria = null)

Returns a new ChildOrderProductTaxQuery object.

Parameters

string $modelAlias The alias of a model in the query
Criteria $criteria Optional Criteria to build the query from

Return Value

OrderProductTaxQuery

at line 125
OrderProductTax|array|mixed findPk( mixed $key, ConnectionInterface $con = null)

Find object by primary key.

Propel uses the instance pool to skip the database if the object exists. Go fast if the query is untouched.

$obj = $c->findPk(12, $con);

Parameters

mixed $key Primary key to use for the query
ConnectionInterface $con an optional connection object

Return Value

OrderProductTax|array|mixed the result, formatted by the current formatter

at line 207
ObjectCollection|array|mixed findPks( array $keys, ConnectionInterface $con = null)

Find objects by primary key $objs = $c->findPks(array(12, 56, 832), $con);

Parameters

array $keys Primary keys to use for the query
ConnectionInterface $con an optional connection object

Return Value

ObjectCollection|array|mixed the list of results, formatted by the current formatter

at line 228
OrderProductTaxQuery filterByPrimaryKey( mixed $key)

Filter the query by primary key

Parameters

mixed $key Primary key to use for the query

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 241
OrderProductTaxQuery filterByPrimaryKeys( array $keys)

Filter the query by a list of primary keys

Parameters

array $keys The list of primary key to use for the query

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 265
OrderProductTaxQuery filterById( mixed $id = null, string $comparison = null)

Filter the query on the id column

Example usage: $query->filterById(1234); // WHERE id = 1234 $query->filterById(array(12, 34)); // WHERE id IN (12, 34) $query->filterById(array('min' => 12)); // WHERE id > 12

Parameters

mixed $id The value to use as filter. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 308
OrderProductTaxQuery filterByOrderProductId( mixed $orderProductId = null, string $comparison = null)

Filter the query on the orderproductid column

Example usage: $query->filterByOrderProductId(1234); // WHERE orderproductid = 1234 $query->filterByOrderProductId(array(12, 34)); // WHERE orderproductid IN (12, 34) $query->filterByOrderProductId(array('min' => 12)); // WHERE orderproductid > 12

Parameters

mixed $orderProductId The value to use as filter. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

OrderProductTaxQuery The current query, for fluid interface

See also

filterByOrderProduct()

at line 346
OrderProductTaxQuery filterByTitle( string $title = null, string $comparison = null)

Filter the query on the title column

Example usage: $query->filterByTitle('fooValue'); // WHERE title = 'fooValue' $query->filterByTitle('%fooValue%'); // WHERE title LIKE '%fooValue%'

Parameters

string $title The value to use as filter. Accepts wildcards (* and % trigger a LIKE)
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 375
OrderProductTaxQuery filterByDescription( string $description = null, string $comparison = null)

Filter the query on the description column

Example usage: $query->filterByDescription('fooValue'); // WHERE description = 'fooValue' $query->filterByDescription('%fooValue%'); // WHERE description LIKE '%fooValue%'

Parameters

string $description The value to use as filter. Accepts wildcards (* and % trigger a LIKE)
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 407
OrderProductTaxQuery filterByAmount( mixed $amount = null, string $comparison = null)

Filter the query on the amount column

Example usage: $query->filterByAmount(1234); // WHERE amount = 1234 $query->filterByAmount(array(12, 34)); // WHERE amount IN (12, 34) $query->filterByAmount(array('min' => 12)); // WHERE amount > 12

Parameters

mixed $amount The value to use as filter. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 448
OrderProductTaxQuery filterByPromoAmount( mixed $promoAmount = null, string $comparison = null)

Filter the query on the promo_amount column

Example usage: $query->filterByPromoAmount(1234); // WHERE promoamount = 1234 $query->filterByPromoAmount(array(12, 34)); // WHERE promoamount IN (12, 34) $query->filterByPromoAmount(array('min' => 12)); // WHERE promo_amount > 12

Parameters

mixed $promoAmount The value to use as filter. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 491
OrderProductTaxQuery filterByCreatedAt( mixed $createdAt = null, string $comparison = null)

Filter the query on the created_at column

Example usage: $query->filterByCreatedAt('2011-03-14'); // WHERE createdat = '2011-03-14' $query->filterByCreatedAt('now'); // WHERE createdat = '2011-03-14' $query->filterByCreatedAt(array('max' => 'yesterday')); // WHERE created_at > '2011-03-13'

Parameters

mixed $createdAt The value to use as filter. Values can be integers (unix timestamps), DateTime objects, or strings. Empty strings are treated as NULL. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 534
OrderProductTaxQuery filterByUpdatedAt( mixed $updatedAt = null, string $comparison = null)

Filter the query on the updated_at column

Example usage: $query->filterByUpdatedAt('2011-03-14'); // WHERE updatedat = '2011-03-14' $query->filterByUpdatedAt('now'); // WHERE updatedat = '2011-03-14' $query->filterByUpdatedAt(array('max' => 'yesterday')); // WHERE updated_at > '2011-03-13'

Parameters

mixed $updatedAt The value to use as filter. Values can be integers (unix timestamps), DateTime objects, or strings. Empty strings are treated as NULL. Use scalar values for equality. Use array values for in_array() equivalent. Use associative array('min' => $minValue, 'max' => $maxValue) for intervals.
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 565
OrderProductTaxQuery filterByOrderProduct( OrderProduct|ObjectCollection $orderProduct, string $comparison = null)

Filter the query by a related \Thelia\Model\OrderProduct object

Parameters

OrderProduct|ObjectCollection $orderProduct The related object(s) to use as filter
string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 590
OrderProductTaxQuery joinOrderProduct( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Adds a JOIN clause to the query using the OrderProduct relation

Parameters

string $relationAlias optional alias for the relation
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 625
OrderProductQuery useOrderProductQuery( string $relationAlias = null, string $joinType = Criteria::INNER_JOIN)

Use the OrderProduct relation OrderProduct object

Parameters

string $relationAlias optional alias for the relation, to be used as main alias in the secondary query
string $joinType Accepted values are null, 'left join', 'right join', 'inner join'

Return Value

OrderProductQuery A secondary query class using the current class as primary query

See also

useQuery()

at line 639
OrderProductTaxQuery prune( OrderProductTax $orderProductTax = null)

Exclude object from result

Parameters

OrderProductTax $orderProductTax Object to remove from the list of results

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 654
int doDeleteAll( ConnectionInterface $con = null)

Deletes all rows from the orderproducttax table.

Parameters

ConnectionInterface $con the connection to use

Return Value

int The number of affected rows (if supported by underlying database driver).

at line 691
int delete( ConnectionInterface $con = null)

Performs a DELETE on the database, given a ChildOrderProductTax or Criteria object OR a primary key value.

Parameters

ConnectionInterface $con

Return Value

int The number of affected rows (if supported by underlying database driver). This includes CASCADE-related rows if supported by native driver or if emulated using Propel.

Exceptions

PropelException Any exceptions caught during processing will be rethrown wrapped into a PropelException.

at line 732
OrderProductTaxQuery recentlyUpdated( int $nbDays = 7)

Filter by the latest updated

Parameters

int $nbDays Maximum age of the latest update in days

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 744
OrderProductTaxQuery recentlyCreated( int $nbDays = 7)

Filter by the latest created

Parameters

int $nbDays Maximum age of in days

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 754
OrderProductTaxQuery lastUpdatedFirst()

Order by update date desc

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 764
OrderProductTaxQuery firstUpdatedFirst()

Order by update date asc

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 774
OrderProductTaxQuery lastCreatedFirst()

Order by create date desc

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 784
OrderProductTaxQuery firstCreatedFirst()

Order by create date asc

Return Value

OrderProductTaxQuery The current query, for fluid interface

at line 72
ChildOrderProductTaxQuery orderById($order = Criteria::ASC)

Order by the id column

Parameters

$order

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery orderByOrderProductId($order = Criteria::ASC)

Order by the orderproductid column

Parameters

$order

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery orderByTitle($order = Criteria::ASC)

Order by the title column

Parameters

$order

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery orderByDescription($order = Criteria::ASC)

Order by the description column

Parameters

$order

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery orderByAmount($order = Criteria::ASC)

Order by the amount column

Parameters

$order

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery orderByPromoAmount($order = Criteria::ASC)

Order by the promo_amount column

Parameters

$order

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery orderByCreatedAt($order = Criteria::ASC)

Order by the created_at column

Parameters

$order

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery orderByUpdatedAt($order = Criteria::ASC)

Order by the updated_at column

Parameters

$order

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery groupById()

Group by the id column

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery groupByOrderProductId()

Group by the orderproductid column

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery groupByTitle()

Group by the title column

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery groupByDescription()

Group by the description column

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery groupByAmount()

Group by the amount column

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery groupByPromoAmount()

Group by the promo_amount column

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery groupByCreatedAt()

Group by the created_at column

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery groupByUpdatedAt()

Group by the updated_at column

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery leftJoin($relation)

Adds a LEFT JOIN clause to the query

Parameters

$relation

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery rightJoin($relation)

Adds a RIGHT JOIN clause to the query

Parameters

$relation

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery innerJoin($relation)

Adds a INNER JOIN clause to the query

Parameters

$relation

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery leftJoinOrderProduct($relationAlias = null)

Adds a LEFT JOIN clause to the query using the OrderProduct relation

Parameters

$relationAlias

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery rightJoinOrderProduct($relationAlias = null)

Adds a RIGHT JOIN clause to the query using the OrderProduct relation

Parameters

$relationAlias

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTaxQuery innerJoinOrderProduct($relationAlias = null)

Adds a INNER JOIN clause to the query using the OrderProduct relation

Parameters

$relationAlias

Return Value

ChildOrderProductTaxQuery

at line 72
ChildOrderProductTax findOne( ConnectionInterface $con = null)

Return the first ChildOrderProductTax matching the query

Parameters

ConnectionInterface $con

Return Value

ChildOrderProductTax

at line 72
ChildOrderProductTax findOneOrCreate( ConnectionInterface $con = null)

Return the first ChildOrderProductTax matching the query, or a new ChildOrderProductTax object populated from the query conditions when no match is found

Parameters

ConnectionInterface $con

Return Value

ChildOrderProductTax

at line 72
ChildOrderProductTax findOneById( int $id)

Return the first ChildOrderProductTax filtered by the id column

Parameters

int $id

Return Value

ChildOrderProductTax

at line 72
ChildOrderProductTax findOneByOrderProductId( int $order_product_id)

Return the first ChildOrderProductTax filtered by the orderproductid column

Parameters

int $order_product_id

Return Value

ChildOrderProductTax

at line 72
ChildOrderProductTax findOneByTitle( string $title)

Return the first ChildOrderProductTax filtered by the title column

Parameters

string $title

Return Value

ChildOrderProductTax

at line 72
ChildOrderProductTax findOneByDescription( string $description)

Return the first ChildOrderProductTax filtered by the description column

Parameters

string $description

Return Value

ChildOrderProductTax

at line 72
ChildOrderProductTax findOneByAmount( string $amount)

Return the first ChildOrderProductTax filtered by the amount column

Parameters

string $amount

Return Value

ChildOrderProductTax

at line 72
ChildOrderProductTax findOneByPromoAmount( string $promo_amount)

Return the first ChildOrderProductTax filtered by the promo_amount column

Parameters

string $promo_amount

Return Value

ChildOrderProductTax

at line 72
ChildOrderProductTax findOneByCreatedAt( string $created_at)

Return the first ChildOrderProductTax filtered by the created_at column

Parameters

string $created_at

Return Value

ChildOrderProductTax

at line 72
ChildOrderProductTax findOneByUpdatedAt( string $updated_at)

Return the first ChildOrderProductTax filtered by the updated_at column

Parameters

string $updated_at

Return Value

ChildOrderProductTax

at line 72
array findById( int $id)

Return ChildOrderProductTax objects filtered by the id column

Parameters

int $id

Return Value

array

at line 72
array findByOrderProductId( int $order_product_id)

Return ChildOrderProductTax objects filtered by the orderproductid column

Parameters

int $order_product_id

Return Value

array

at line 72
array findByTitle( string $title)

Return ChildOrderProductTax objects filtered by the title column

Parameters

string $title

Return Value

array

at line 72
array findByDescription( string $description)

Return ChildOrderProductTax objects filtered by the description column

Parameters

string $description

Return Value

array

at line 72
array findByAmount( string $amount)

Return ChildOrderProductTax objects filtered by the amount column

Parameters

string $amount

Return Value

array

at line 72
array findByPromoAmount( string $promo_amount)

Return ChildOrderProductTax objects filtered by the promo_amount column

Parameters

string $promo_amount

Return Value

array

at line 72
array findByCreatedAt( string $created_at)

Return ChildOrderProductTax objects filtered by the created_at column

Parameters

string $created_at

Return Value

array

at line 72
array findByUpdatedAt( string $updated_at)

Return ChildOrderProductTax objects filtered by the updated_at column

Parameters

string $updated_at

Return Value

array