File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Modules/Sources/Networking/Model/Product Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import NetworkingCore
2222/// }
2323/// ]
2424///
25- internal struct ProductMetadataExtractor {
25+ struct ProductMetadataExtractor {
2626
2727 private typealias AnyDictionary = [ String : Any ? ]
2828
@@ -38,7 +38,7 @@ internal struct ProductMetadataExtractor {
3838
3939 /// Searches product metadata for subscription data and converts it to a `ProductSubscription` if possible.
4040 ///
41- internal func extractProductSubscription( ) throws -> ProductSubscription ? {
41+ func extractProductSubscription( ) throws -> ProductSubscription ? {
4242 let subscriptionMetadata = filterMetadata ( with: Constants . subscriptionPrefix)
4343
4444 guard !subscriptionMetadata. isEmpty else {
@@ -53,7 +53,7 @@ internal struct ProductMetadataExtractor {
5353
5454 /// Extracts a `String` metadata value for the provided key.
5555 ///
56- internal func extractStringValue( forKey key: String ) -> String ? {
56+ func extractStringValue( forKey key: String ) -> String ? {
5757 let metaData = filterMetadata ( with: key)
5858 let keyValueMetadata = getKeyValueDictionary ( from: metaData)
5959 return keyValueMetadata. valueAsString ( forKey: key)
You can’t perform that action at this time.
0 commit comments