// Generated by Create API
// https://github.com/CreateAPI/CreateAPI

import Foundation

public struct AuraSettings: Codable, Equatable {
    /// AuraColorSet
    public var colorSet: Int
    public var frameShape: Int
    public var maskStyle: Int
    public var overlayColor: Int
    /// AuraStyle
    public var style: Int
    public var textPlacement: Int

    public init(colorSet: Int, frameShape: Int, maskStyle: Int, overlayColor: Int, style: Int, textPlacement: Int) {
        self.colorSet = colorSet
        self.frameShape = frameShape
        self.maskStyle = maskStyle
        self.overlayColor = overlayColor
        self.style = style
        self.textPlacement = textPlacement
    }
}
