src/modules/partner/dtos/partner-page-options.dto.ts
Properties |
Readonly Optional order |
Type : Order
|
Default value : Order.ASC
|
Decorators :
@ApiPropertyOptional({enum: Order, default: undefined})
|
Inherited from
PageOptionsDto
|
Defined in
PageOptionsDto:13
|
Readonly Optional page |
Type : number
|
Default value : 1
|
Decorators :
@ApiPropertyOptional({minimum: 1, default: 1})
|
Inherited from
PageOptionsDto
|
Defined in
PageOptionsDto:23
|
Readonly Optional take |
Type : number
|
Default value : 10
|
Decorators :
@ApiPropertyOptional({minimum: 1, maximum: 50, default: 10})
|
Inherited from
PageOptionsDto
|
Defined in
PageOptionsDto:35
|
import { PageOptionsDto } from 'common/dtos';
export class PartnersPageOptionsDto extends PageOptionsDto {}