Enumerations

The following enumerations are available globally.

  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSInteger, FBShimmerDirection) {
        FBShimmerDirectionRight,    // Shimmer animation goes from left to right
        FBShimmerDirectionLeft,     // Shimmer animation goes from right to left
        FBShimmerDirectionUp,       // Shimmer animation goes from below to above
        FBShimmerDirectionDown,     // Shimmer animation goes from above to below
    }

    Swift

    enum FBShimmerDirection : Int
  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSInteger, ActivityFeedFilterType) {
        ActivityFeedFilterTypeAll,
        ActivityFeedFilterTypeSent,
        ActivityFeedFilterTypeReceived,
        ActivityFeedFilterTypeGiftCards
    }
  • Types of games supported by the client.

    See more

    Declaration

    Objective-C

    enum GameType {}

    Swift

    enum GameType : Int
  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSInteger, GameDifficultyLevel) {
        EasyGameDifficulty,
        NormalGameDifficulty,
        HardGameDifficulty,
        ChallengeGameDifficulty
    }

    Swift

    enum GameDifficultyLevel : Int
  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSUInteger, PaymentInfoType) {
        PaymentInfoTypeUnknown,
        PaymentInfoTypePayPal,
        PaymentInfoTypeRBC,
        PaymentInfoTypeStripe,
        PaymentInfoTypeIncomm,
        PaymentInfoTypeVanillaVisa,
        PaymentInfoTypeCredit,
        PaymentInfoTypeIncommVesta,
        PaymentInfoTypeCashless,
        PaymentInfoTypeRadial
    }

    Swift

    enum PaymentInfoType : UInt
  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSInteger, PaymentMerchantInfoType){
        PaymentMerchantInfoTypeUnknown = 0,
        PaymentMerchantInfoTypePaypal,
        PaymentMerchantInfoTypeRBC,
        PaymentMerchantInfoTypeIncomm,
        PaymentMerchantInfoTypeWesternUnion,
        PaymentMerchantInfoTypeVanillaVisa,
        PaymentMerchantInfoTypeCashless
    }

    Swift

    enum PaymentMerchantInfoType : Int
  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSInteger, UserNetworkStatus) {
        UserNetworkStatusUnknown = -1,
        UserNetworkStatusActive = 0,
        UserNetworkStatusVerifying
    }

    Swift

    enum UserNetworkStatus : Int
  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSInteger, VoucherStatus) {
        VoucherStatusUnknown = -1,
        VoucherStatusPending = 0,
        VoucherStatusCreated,
        VoucherStatusClaimed,
        VoucherStatusRemoved,
        VoucherStatusFrozen,
        VoucherStatusError
    }

    Swift

    enum VoucherStatus : Int
  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSInteger, VoucherPrivacyStatus) {
        VoucherPrivacyStatusPrivate,
        VoucherPrivacyStatusFriends,
        VoucherPrivacyStatusPublic,
    }

    Swift

    enum VoucherPrivacyStatus : Int
  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSUInteger, PaymentInfoErrorSource) {
        PaymentInfoErrorSourceNone,
        PaymentInfoErrorSourceServer,
        PaymentInfoErrorSourceCreator,
        PaymentInfoErrorSourceClaimer,
        PaymentInfoErrorSourceUnknown
    }

    Swift

    enum PaymentInfoErrorSource : UInt
  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSUInteger, PaymentInfoState) {
        PaymentInfoStateNone,
        PaymentInfoStateVerifySource,
        PaymentInfoStateVerifyDest,
        PaymentInfoStatePending,
        PaymentInfoStatePreparingPayment,
        PaymentInfoStatePayingPayment,
        PaymentInfoStatePaid,
        PaymentInfoStateUnknown
    }

    Swift

    enum PaymentInfoState : UInt
  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSUInteger, PaymentInfoErrorState) {
        PaymentInfoErrorStateNone,
        PaymentInfoErrorStateUserSetupRequired,
        PaymentInfoErrorStateVoucherSetupRequired,
        PaymentInfoErrorStateSeeDetails,
        PaymentInfoErrorStateApprovalRequired,
        PaymentInfoErrorStateUnknown
    }

    Swift

    enum PaymentInfoErrorState : UInt
  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSInteger, WrappingPaperCategoryType) {
        WrappingPaperCategoryTypeSearch,
        WrappingPaperCategoryTypeDefault,
        WrappingPaperCategoryTypeReference,
        WrappingPaperCategoryTypeUploadPhoto
    }

    Swift

    enum WrappingPaperCategoryType : Int
  • GameMode is the current mode of the User playing the game.

    See more

    Declaration

    Objective-C

    enum GameMode {}

    Swift

    enum GameMode : Int
  • Undocumented

    See more

    Declaration

    Objective-C

    NS_ENUM(NSUInteger, PersonalizationType){
        PersonalizationTypeHint,
        PersonalizationTypeGift,
        PersonalizationTypePhoto,
        PersonalizationTypeTitle,
        PersonalizationTypeWrapping,
        PersonalizationTypeRecipient,
        PersonalizationTypeSuggestion,
        PersonalizationTypeSound,
        PersonalizationTypeVideo,
        PersonalizationTypeNote,
        PersonalizationTypeAnimated,
        PersonalizationTypeGames
    }

    Swift

    enum PersonalizationType : UInt