SAPcpmsAttestationSettings

public struct SAPcpmsAttestationSettings
extension SAPcpmsAttestationSettings: CustomStringConvertible, CustomDebugStringConvertible

Format of attestationSettings in json response SAP BTP SDK for iOS only parses the iOS related values

“attestationSettings”: { “iOS”: { “enabled”: true, “enforced”: false }, “android”: { “enabled”: false, “enforced”: false } }

  • A bool value indicating if the attestation is enabled or not on CPMS

    Declaration

    Swift

    public let enabled: Bool
  • A bool value indicating if the attestation token check is enforced or not on CPMS

    Declaration

    Swift

    public let enforced: Bool
  • Description

    Declaration

    Swift

    public init(enabled: Bool = false, enforced: Bool = false)

    Parameters

    enabled

    A bool value indicating if attestation is enabled in cpms

    enforced

    A bool value indicating if attestation is enforced in cpms

  • Undocumented

    Declaration

    Swift

    public init(sapcpmsSettings: Any) throws
  • Undocumented

    Declaration

    Swift

    public init(sapcpmsAttestationSettings: Any) throws
  • Declaration

    Swift

    public var description: String { get }
  • Declaration

    Swift

    public var debugDescription: String { get }