SPSmartSharingCodeErrorType

Objective-C

NS_ENUM(NSUInteger, SPSmartSharingCodeErrorType) {
	/** The format of the sharing code is incorrect */
	SPSmartSharingCodeErrorTypeInvalidFormat = 1,
	/** The POI data could not be found from our Steerpath server */
	SPSmartSharingCodeErrorTypeDataFound = 2
}

Swift

enum SPSmartSharingCodeErrorType : UInt, @unchecked Sendable

Undocumented