IPWorks Cloud 2020 iOS Edition

Questions / Feedback?

listResourcesScope (property)

Controls the scope of the results when listing resources.

Syntax

@property (nonatomic,readwrite,assign,getter=listResourcesScope,setter=setListResourcesScope:) int listResourcesScope;
- (int)listResourcesScope;
- (void)setListResourcesScope:(int)newListResourcesScope;

/* Possible Values */
LRS_USER(0),
LRS_DOMAIN(1),
LRS_SHARED_DRIVE(2),
LRS_ALL_DRIVES(3)
public var listResourcesScope: GoogledriveListResourcesScopes {
  get {...}
set {...} }
public enum GoogledriveListResourcesScopes : Int32 { case lrsUser = 0 case lrsDomain = 1 case lrsSharedDrive = 2 case lrsAllDrives = 3 }

Default Value

0

Remarks

This property controls the scope of the results when listing resources with ListResources or ListChildren. Valid values are:

lrsUser (0) (default) Items in the user's "My Drive" and "Shared with me" collections.
lrsDomain (1) Items shared to the user's domain.
lrsSharedDrive (2) Items within the shared drive specified by the SharedDrive property.
lrsAllDrives (3) Items in the user's "My Drive" and "Shared with me" collections, as well as all items in all shared drives that the user is a member of.

Refer to ListResources for more information.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks Cloud 2020 iOS Edition - Version 20.0 [Build 8265]