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

import Foundation

public struct HookInteractionType: RawRepresentable, Codable, Equatable {
    public let rawValue: String

    public init(rawValue: String) {
        self.rawValue = rawValue
    }

    public static let likeDoubleTap = Self(rawValue: "like_double_tap")
    public static let likeSingleTap = Self(rawValue: "like_single_tap")
    public static let undoLikeDoubleTap = Self(rawValue: "undo_like_double_tap")
    public static let undoLikeSingleTap = Self(rawValue: "undo_like_single_tap")
}
