IPWorks Cloud 2020 iOS Edition

Questions / Feedback?

accountType (property)

The account's type.

Syntax

@property (nonatomic,readonly,assign,getter=accountType) int accountType;
- (int)accountType;

/* Possible Values */
AT_BASIC(0),
AT_PRO(1),
AT_BUSINESS(2)
public var accountType: DropboxAccountTypes {
  get {...}
}
public enum DropboxAccountTypes : Int32 { case atBasic = 0 case atPro = 1 case atBusiness = 2 }

Default Value

0

Remarks

The account's type.

This property reflects the account's type. Possible values are:

  • 0 (atBasic)
  • 1 (atPro)
  • 2 (atBusiness)

This property is read-only.

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