// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export class ListDNAFilesRequest extends $dara.Model { /** * @remarks * The ID of the media fingerprint library. * * This parameter is required. * * @example * 2288c6ca184c0e47098a5b665e2a12**** */ DBId?: string; /** * @remarks * The pagination token that is used in the next request to retrieve a new page of results. You do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of NextToken. * * @example * ae0fd49c0840e14daf0d66a75b83**** */ nextPageToken?: string; ownerAccount?: string; ownerId?: number; /** * @remarks * The number of entries per page. Default value: 20. Valid values: 1 to 100. * * @example * 10 */ pageSize?: number; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string } { return { DBId: 'DBId', nextPageToken: 'NextPageToken', ownerAccount: 'OwnerAccount', ownerId: 'OwnerId', pageSize: 'PageSize', resourceOwnerAccount: 'ResourceOwnerAccount', resourceOwnerId: 'ResourceOwnerId', }; } static types(): { [key: string]: any } { return { DBId: 'string', nextPageToken: 'string', ownerAccount: 'string', ownerId: 'number', pageSize: 'number', resourceOwnerAccount: 'string', resourceOwnerId: 'number', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }