ActionStyle

public enum ActionStyle
extension ActionStyle: Codable
extension ActionStyle: JSONDecodable
extension ActionStyle: DictionaryConvertible

Description of type of opeation

  • Normal style.

    Declaration

    Swift

    case normal
  • Operation which delete/destroy somethings.

    Declaration

    Swift

    case destructive
  • Custom style.

    Declaration

    Swift

    case custom([String : Any])
  • If custom style,

    Declaration

    Swift

    var properties: [String : Any]? { get }

Codable

  • Declaration

    Swift

    public init(from decoder: Decoder) throws
  • Declaration

    Swift

    public func encode(to encoder: Encoder) throws

JSON

Key