AgentInfo
public class AgentInfo : Codable
Represents package, build and release information about a Coaty agent.
Agent information is generated when the agent project is build and can be used at run time, e.g. for logging, display, or configuration.
-
Represents information about the agent’s package.
Declaration
Swift
public var packageInfo: AgentPackageInfo
-
Represents information about agent build.
Declaration
Swift
public var buildInfo: AgentBuildInfo
-
Represents information about agent configuration.
Declaration
Swift
public var configInfo: AgentConfigInfo
-
Create a new instance of AgentInfo.
Declaration
Swift
public init(packageInfo: AgentPackageInfo, buildInfo: AgentBuildInfo, configInfo: AgentConfigInfo)
-
Declaration
Swift
public required init(from decoder: Decoder) throws
-
Declaration
Swift
public func encode(to encoder: Encoder) throws