Files
divkit/client/ios/DivKit/generated_sources/DivActionCustomTemplate.swift
T
feldspar 26d5d6659d Updated ios code to support current scheme
commit_hash:546aac2b543f00b92a82a237540ef5c39b44d00f
2026-01-16 17:37:14 +03:00

39 lines
1.1 KiB
Swift

// Generated code. Do not modify.
import Foundation
import Serialization
import VGSL
public final class DivActionCustomTemplate: TemplateValue, Sendable {
public static let type: String = "custom"
public let parent: String?
public convenience init(dictionary: [String: Any], templateToType: [TemplateName: String]) throws {
self.init(
parent: dictionary["type"] as? String
)
}
init(
parent: String?
) {
self.parent = parent
}
private static func resolveOnlyLinks(context: TemplatesContext, parent: DivActionCustomTemplate?) -> DeserializationResult<DivActionCustom> {
return .success(DivActionCustom())
}
public static func resolveValue(context: TemplatesContext, parent: DivActionCustomTemplate?, useOnlyLinks: Bool) -> DeserializationResult<DivActionCustom> {
return .success(DivActionCustom())
}
private func mergedWithParent(templates: [TemplateName: Any]) throws -> DivActionCustomTemplate {
return self
}
public func resolveParent(templates: [TemplateName: Any]) throws -> DivActionCustomTemplate {
return self
}
}