Commit 3117f9c6 authored by Javokhir's avatar Javokhir
Browse files

Published 2.2.6 version

parent 9dcda3d1
Pod::Spec.new do |spec| Pod::Spec.new do |spec|
spec.name = "MyIdSDK" spec.name = "MyIdSDK"
spec.version = "2.2.5" spec.version = "2.2.6"
spec.platform = :ios, '11.0' spec.platform = :ios, '12.0'
spec.ios.deployment_target = '11.0' spec.ios.deployment_target = '12.0'
spec.summary = "MyID Framework" spec.summary = "MyID Framework"
spec.description = "MyID Framework for iOS" spec.description = "MyID Framework for iOS"
spec.homepage = "https://gitlab.myid.uz/myid-public-code/myid-sample-ios" spec.homepage = "https://gitlab.myid.uz/myid-public-code/myid-sample-ios"
......
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
<key>AvailableLibraries</key> <key>AvailableLibraries</key>
<array> <array>
<dict> <dict>
<key>BinaryPath</key>
<string>MyIdSDK.framework/MyIdSDK</string>
<key>LibraryIdentifier</key> <key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string> <string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key> <key>LibraryPath</key>
...@@ -20,6 +22,8 @@ ...@@ -20,6 +22,8 @@
<string>simulator</string> <string>simulator</string>
</dict> </dict>
<dict> <dict>
<key>BinaryPath</key>
<string>MyIdSDK.framework/MyIdSDK</string>
<key>LibraryIdentifier</key> <key>LibraryIdentifier</key>
<string>ios-arm64</string> <string>ios-arm64</string>
<key>LibraryPath</key> <key>LibraryPath</key>
......
#if 0 #if 0
#elif defined(__arm64__) && __arm64__ #elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
#ifndef MYIDSDK_SWIFT_H #ifndef MYIDSDK_SWIFT_H
#define MYIDSDK_SWIFT_H #define MYIDSDK_SWIFT_H
#pragma clang diagnostic push #pragma clang diagnostic push
...@@ -42,12 +42,18 @@ ...@@ -42,12 +42,18 @@
#include <string.h> #include <string.h>
#endif #endif
#if defined(__cplusplus) #if defined(__cplusplus)
#if __has_include(<ptrauth.h>) #if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h> # include <ptrauth.h>
#else #else
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# ifndef __ptrauth_swift_value_witness_function_pointer # ifndef __ptrauth_swift_value_witness_function_pointer
# define __ptrauth_swift_value_witness_function_pointer(x) # define __ptrauth_swift_value_witness_function_pointer(x)
# endif # endif
# ifndef __ptrauth_swift_class_method_pointer
# define __ptrauth_swift_class_method_pointer(x)
# endif
#pragma clang diagnostic pop
#endif #endif
#endif #endif
...@@ -246,6 +252,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); ...@@ -246,6 +252,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#else #else
# define SWIFT_NOEXCEPT # define SWIFT_NOEXCEPT
#endif #endif
#if !defined(SWIFT_C_INLINE_THUNK)
# if __has_attribute(always_inline)
# if __has_attribute(nodebug)
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
# else
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
# endif
# else
# define SWIFT_C_INLINE_THUNK inline
# endif
#endif
#if defined(_WIN32) #if defined(_WIN32)
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) #if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) # define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
...@@ -402,6 +419,7 @@ typedef SWIFT_ENUM(NSInteger, MyIdLocale, open) { ...@@ -402,6 +419,7 @@ typedef SWIFT_ENUM(NSInteger, MyIdLocale, open) {
MyIdLocaleRU = 0, MyIdLocaleRU = 0,
MyIdLocaleEN = 1, MyIdLocaleEN = 1,
MyIdLocaleUZ = 2, MyIdLocaleUZ = 2,
MyIdLocaleKY = 3,
}; };
@class UIImage; @class UIImage;
...@@ -457,12 +475,14 @@ SWIFT_AVAILABILITY(ios,introduced=13.0) ...@@ -457,12 +475,14 @@ SWIFT_AVAILABILITY(ios,introduced=13.0)
#endif
#if defined(__cplusplus)
#endif #endif
#if __has_attribute(external_source_symbol) #if __has_attribute(external_source_symbol)
# pragma clang attribute pop # pragma clang attribute pop
#endif #endif
#if defined(__cplusplus)
#endif
#pragma clang diagnostic pop #pragma clang diagnostic pop
#endif #endif
......
// swift-interface-format-version: 1.0 // swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MyIdSDK // swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MyIdSDK
// swift-module-flags-ignorable: -enable-bare-slash-regex // swift-module-flags-ignorable: -enable-bare-slash-regex
import AVFoundation import AVFoundation
import CoreImage.CIFilterBuiltins import CoreImage.CIFilterBuiltins
...@@ -10,6 +10,7 @@ import Compression ...@@ -10,6 +10,7 @@ import Compression
import CoreImage import CoreImage
import CoreVideo import CoreVideo
import CryptoKit import CryptoKit
import DeveloperToolsSupport
import Foundation import Foundation
import LocalAuthentication import LocalAuthentication
@_exported import MyIdSDK @_exported import MyIdSDK
...@@ -20,6 +21,7 @@ import UIKit ...@@ -20,6 +21,7 @@ import UIKit
import Vision import Vision
import _Concurrency import _Concurrency
import _StringProcessing import _StringProcessing
import _SwiftConcurrencyShims
@_inheritsConvenienceInitializers @objc public class MyIdResult : ObjectiveC.NSObject { @_inheritsConvenienceInitializers @objc public class MyIdResult : ObjectiveC.NSObject {
@objc public var image: UIKit.UIImage? @objc public var image: UIKit.UIImage?
@objc public var code: Swift.String? @objc public var code: Swift.String?
...@@ -185,6 +187,7 @@ extension Swift.String : Swift.Error { ...@@ -185,6 +187,7 @@ extension Swift.String : Swift.Error {
case RU = 0 case RU = 0
case EN case EN
case UZ case UZ
case KY
public init?(rawValue: Swift.Int) public init?(rawValue: Swift.Int)
public typealias RawValue = Swift.Int public typealias RawValue = Swift.Int
public var rawValue: Swift.Int { public var rawValue: Swift.Int {
......
// swift-interface-format-version: 1.0 // swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MyIdSDK // swift-module-flags: -target arm64-apple-ios12.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MyIdSDK
// swift-module-flags-ignorable: -enable-bare-slash-regex // swift-module-flags-ignorable: -enable-bare-slash-regex
import AVFoundation import AVFoundation
import CoreImage.CIFilterBuiltins import CoreImage.CIFilterBuiltins
...@@ -10,6 +10,7 @@ import Compression ...@@ -10,6 +10,7 @@ import Compression
import CoreImage import CoreImage
import CoreVideo import CoreVideo
import CryptoKit import CryptoKit
import DeveloperToolsSupport
import Foundation import Foundation
import LocalAuthentication import LocalAuthentication
@_exported import MyIdSDK @_exported import MyIdSDK
...@@ -20,6 +21,7 @@ import UIKit ...@@ -20,6 +21,7 @@ import UIKit
import Vision import Vision
import _Concurrency import _Concurrency
import _StringProcessing import _StringProcessing
import _SwiftConcurrencyShims
@_inheritsConvenienceInitializers @objc public class MyIdResult : ObjectiveC.NSObject { @_inheritsConvenienceInitializers @objc public class MyIdResult : ObjectiveC.NSObject {
@objc public var image: UIKit.UIImage? @objc public var image: UIKit.UIImage?
@objc public var code: Swift.String? @objc public var code: Swift.String?
...@@ -185,6 +187,7 @@ extension Swift.String : Swift.Error { ...@@ -185,6 +187,7 @@ extension Swift.String : Swift.Error {
case RU = 0 case RU = 0
case EN case EN
case UZ case UZ
case KY
public init?(rawValue: Swift.Int) public init?(rawValue: Swift.Int)
public typealias RawValue = Swift.Int public typealias RawValue = Swift.Int
public var rawValue: Swift.Int { public var rawValue: Swift.Int {
......
framework module MyIdSDK { framework module MyIdSDK {
umbrella header "MyIdSDK.h" umbrella header "MyIdSDK.h"
export * export *
module * { export * } module * { export * }
} }
......
#if 0 #if 0
#elif defined(__arm64__) && __arm64__ #elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
#ifndef MYIDSDK_SWIFT_H #ifndef MYIDSDK_SWIFT_H
#define MYIDSDK_SWIFT_H #define MYIDSDK_SWIFT_H
#pragma clang diagnostic push #pragma clang diagnostic push
...@@ -42,12 +42,18 @@ ...@@ -42,12 +42,18 @@
#include <string.h> #include <string.h>
#endif #endif
#if defined(__cplusplus) #if defined(__cplusplus)
#if __has_include(<ptrauth.h>) #if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h> # include <ptrauth.h>
#else #else
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# ifndef __ptrauth_swift_value_witness_function_pointer # ifndef __ptrauth_swift_value_witness_function_pointer
# define __ptrauth_swift_value_witness_function_pointer(x) # define __ptrauth_swift_value_witness_function_pointer(x)
# endif # endif
# ifndef __ptrauth_swift_class_method_pointer
# define __ptrauth_swift_class_method_pointer(x)
# endif
#pragma clang diagnostic pop
#endif #endif
#endif #endif
...@@ -246,6 +252,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); ...@@ -246,6 +252,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#else #else
# define SWIFT_NOEXCEPT # define SWIFT_NOEXCEPT
#endif #endif
#if !defined(SWIFT_C_INLINE_THUNK)
# if __has_attribute(always_inline)
# if __has_attribute(nodebug)
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
# else
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
# endif
# else
# define SWIFT_C_INLINE_THUNK inline
# endif
#endif
#if defined(_WIN32) #if defined(_WIN32)
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) #if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) # define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
...@@ -402,6 +419,7 @@ typedef SWIFT_ENUM(NSInteger, MyIdLocale, open) { ...@@ -402,6 +419,7 @@ typedef SWIFT_ENUM(NSInteger, MyIdLocale, open) {
MyIdLocaleRU = 0, MyIdLocaleRU = 0,
MyIdLocaleEN = 1, MyIdLocaleEN = 1,
MyIdLocaleUZ = 2, MyIdLocaleUZ = 2,
MyIdLocaleKY = 3,
}; };
@class UIImage; @class UIImage;
...@@ -457,17 +475,19 @@ SWIFT_AVAILABILITY(ios,introduced=13.0) ...@@ -457,17 +475,19 @@ SWIFT_AVAILABILITY(ios,introduced=13.0)
#endif
#if defined(__cplusplus)
#endif #endif
#if __has_attribute(external_source_symbol) #if __has_attribute(external_source_symbol)
# pragma clang attribute pop # pragma clang attribute pop
#endif #endif
#if defined(__cplusplus)
#endif
#pragma clang diagnostic pop #pragma clang diagnostic pop
#endif #endif
#elif defined(__x86_64__) && __x86_64__ #elif defined(__x86_64__) && __x86_64__
// Generated by Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // Generated by Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
#ifndef MYIDSDK_SWIFT_H #ifndef MYIDSDK_SWIFT_H
#define MYIDSDK_SWIFT_H #define MYIDSDK_SWIFT_H
#pragma clang diagnostic push #pragma clang diagnostic push
...@@ -509,12 +529,18 @@ SWIFT_AVAILABILITY(ios,introduced=13.0) ...@@ -509,12 +529,18 @@ SWIFT_AVAILABILITY(ios,introduced=13.0)
#include <string.h> #include <string.h>
#endif #endif
#if defined(__cplusplus) #if defined(__cplusplus)
#if __has_include(<ptrauth.h>) #if defined(__arm64e__) && __has_include(<ptrauth.h>)
# include <ptrauth.h> # include <ptrauth.h>
#else #else
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wreserved-macro-identifier"
# ifndef __ptrauth_swift_value_witness_function_pointer # ifndef __ptrauth_swift_value_witness_function_pointer
# define __ptrauth_swift_value_witness_function_pointer(x) # define __ptrauth_swift_value_witness_function_pointer(x)
# endif # endif
# ifndef __ptrauth_swift_class_method_pointer
# define __ptrauth_swift_class_method_pointer(x)
# endif
#pragma clang diagnostic pop
#endif #endif
#endif #endif
...@@ -713,6 +739,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); ...@@ -713,6 +739,17 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#else #else
# define SWIFT_NOEXCEPT # define SWIFT_NOEXCEPT
#endif #endif
#if !defined(SWIFT_C_INLINE_THUNK)
# if __has_attribute(always_inline)
# if __has_attribute(nodebug)
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline)) __attribute__((nodebug))
# else
# define SWIFT_C_INLINE_THUNK inline __attribute__((always_inline))
# endif
# else
# define SWIFT_C_INLINE_THUNK inline
# endif
#endif
#if defined(_WIN32) #if defined(_WIN32)
#if !defined(SWIFT_IMPORT_STDLIB_SYMBOL) #if !defined(SWIFT_IMPORT_STDLIB_SYMBOL)
# define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport) # define SWIFT_IMPORT_STDLIB_SYMBOL __declspec(dllimport)
...@@ -869,6 +906,7 @@ typedef SWIFT_ENUM(NSInteger, MyIdLocale, open) { ...@@ -869,6 +906,7 @@ typedef SWIFT_ENUM(NSInteger, MyIdLocale, open) {
MyIdLocaleRU = 0, MyIdLocaleRU = 0,
MyIdLocaleEN = 1, MyIdLocaleEN = 1,
MyIdLocaleUZ = 2, MyIdLocaleUZ = 2,
MyIdLocaleKY = 3,
}; };
@class UIImage; @class UIImage;
...@@ -924,12 +962,14 @@ SWIFT_AVAILABILITY(ios,introduced=13.0) ...@@ -924,12 +962,14 @@ SWIFT_AVAILABILITY(ios,introduced=13.0)
#endif
#if defined(__cplusplus)
#endif #endif
#if __has_attribute(external_source_symbol) #if __has_attribute(external_source_symbol)
# pragma clang attribute pop # pragma clang attribute pop
#endif #endif
#if defined(__cplusplus)
#endif
#pragma clang diagnostic pop #pragma clang diagnostic pop
#endif #endif
......
// swift-interface-format-version: 1.0 // swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MyIdSDK // swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MyIdSDK
// swift-module-flags-ignorable: -enable-bare-slash-regex // swift-module-flags-ignorable: -enable-bare-slash-regex
import AVFoundation import AVFoundation
import CoreImage.CIFilterBuiltins import CoreImage.CIFilterBuiltins
...@@ -10,6 +10,7 @@ import Compression ...@@ -10,6 +10,7 @@ import Compression
import CoreImage import CoreImage
import CoreVideo import CoreVideo
import CryptoKit import CryptoKit
import DeveloperToolsSupport
import Foundation import Foundation
import LocalAuthentication import LocalAuthentication
@_exported import MyIdSDK @_exported import MyIdSDK
...@@ -20,6 +21,7 @@ import UIKit ...@@ -20,6 +21,7 @@ import UIKit
import Vision import Vision
import _Concurrency import _Concurrency
import _StringProcessing import _StringProcessing
import _SwiftConcurrencyShims
@_inheritsConvenienceInitializers @objc public class MyIdResult : ObjectiveC.NSObject { @_inheritsConvenienceInitializers @objc public class MyIdResult : ObjectiveC.NSObject {
@objc public var image: UIKit.UIImage? @objc public var image: UIKit.UIImage?
@objc public var code: Swift.String? @objc public var code: Swift.String?
...@@ -185,6 +187,7 @@ extension Swift.String : Swift.Error { ...@@ -185,6 +187,7 @@ extension Swift.String : Swift.Error {
case RU = 0 case RU = 0
case EN case EN
case UZ case UZ
case KY
public init?(rawValue: Swift.Int) public init?(rawValue: Swift.Int)
public typealias RawValue = Swift.Int public typealias RawValue = Swift.Int
public var rawValue: Swift.Int { public var rawValue: Swift.Int {
......
// swift-interface-format-version: 1.0 // swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MyIdSDK // swift-module-flags: -target arm64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MyIdSDK
// swift-module-flags-ignorable: -enable-bare-slash-regex // swift-module-flags-ignorable: -enable-bare-slash-regex
import AVFoundation import AVFoundation
import CoreImage.CIFilterBuiltins import CoreImage.CIFilterBuiltins
...@@ -10,6 +10,7 @@ import Compression ...@@ -10,6 +10,7 @@ import Compression
import CoreImage import CoreImage
import CoreVideo import CoreVideo
import CryptoKit import CryptoKit
import DeveloperToolsSupport
import Foundation import Foundation
import LocalAuthentication import LocalAuthentication
@_exported import MyIdSDK @_exported import MyIdSDK
...@@ -20,6 +21,7 @@ import UIKit ...@@ -20,6 +21,7 @@ import UIKit
import Vision import Vision
import _Concurrency import _Concurrency
import _StringProcessing import _StringProcessing
import _SwiftConcurrencyShims
@_inheritsConvenienceInitializers @objc public class MyIdResult : ObjectiveC.NSObject { @_inheritsConvenienceInitializers @objc public class MyIdResult : ObjectiveC.NSObject {
@objc public var image: UIKit.UIImage? @objc public var image: UIKit.UIImage?
@objc public var code: Swift.String? @objc public var code: Swift.String?
...@@ -185,6 +187,7 @@ extension Swift.String : Swift.Error { ...@@ -185,6 +187,7 @@ extension Swift.String : Swift.Error {
case RU = 0 case RU = 0
case EN case EN
case UZ case UZ
case KY
public init?(rawValue: Swift.Int) public init?(rawValue: Swift.Int)
public typealias RawValue = Swift.Int public typealias RawValue = Swift.Int
public var rawValue: Swift.Int { public var rawValue: Swift.Int {
......
// swift-interface-format-version: 1.0 // swift-interface-format-version: 1.0
// swift-compiler-version: Apple Swift version 5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100) // swift-compiler-version: Apple Swift version 5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)
// swift-module-flags: -target x86_64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MyIdSDK // swift-module-flags: -target x86_64-apple-ios12.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MyIdSDK
// swift-module-flags-ignorable: -enable-bare-slash-regex // swift-module-flags-ignorable: -enable-bare-slash-regex
import AVFoundation import AVFoundation
import CoreImage.CIFilterBuiltins import CoreImage.CIFilterBuiltins
...@@ -10,6 +10,7 @@ import Compression ...@@ -10,6 +10,7 @@ import Compression
import CoreImage import CoreImage
import CoreVideo import CoreVideo
import CryptoKit import CryptoKit
import DeveloperToolsSupport
import Foundation import Foundation
import LocalAuthentication import LocalAuthentication
@_exported import MyIdSDK @_exported import MyIdSDK
...@@ -20,6 +21,7 @@ import UIKit ...@@ -20,6 +21,7 @@ import UIKit
import Vision import Vision
import _Concurrency import _Concurrency
import _StringProcessing import _StringProcessing
import _SwiftConcurrencyShims
@_inheritsConvenienceInitializers @objc public class MyIdResult : ObjectiveC.NSObject { @_inheritsConvenienceInitializers @objc public class MyIdResult : ObjectiveC.NSObject {
@objc public var image: UIKit.UIImage? @objc public var image: UIKit.UIImage?
@objc public var code: Swift.String? @objc public var code: Swift.String?
...@@ -185,6 +187,7 @@ extension Swift.String : Swift.Error { ...@@ -185,6 +187,7 @@ extension Swift.String : Swift.Error {
case RU = 0 case RU = 0
case EN case EN
case UZ case UZ
case KY
public init?(rawValue: Swift.Int) public init?(rawValue: Swift.Int)
public typealias RawValue = Swift.Int public typealias RawValue = Swift.Int
public var rawValue: Swift.Int { public var rawValue: Swift.Int {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment