public class BaseContainerConfig : Codable
Base container configuration for SDK workflows. Contains common display and behavior settings for all container types.
## Properties
backgroundColor: Background color (hex string)showLoader: Whether to show loading indicatorloadTimeout: Timeout in milliseconds for loadinghideCloseButton: Whether to hide the close button
[init(backgroundColor:showLoader:loadTimeout:hideCloseButton:)](#/s:9embed_sdk19BaseContainerConfigC15backgroundColor10showLoader11loadTimeout15hideCloseButtonACSSSg_SbSgSiSgAItcfc)
Creates a base container configuration.
Swift
public init(
backgroundColor: String? = nil,
showLoader: Bool? = nil,
loadTimeout: Int? = nil,
hideCloseButton: Bool? = nil
)
backgroundColor | Background color as hex string (optional) |
showLoader | Show loading indicator (optional) |
loadTimeout | Load timeout in milliseconds (optional) |
hideCloseButton | Hide close button (optional) |