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

import Foundation

/// Sticker URLs for different billing periods in API response
public struct PlanStickersResponse: Codable, Equatable {
    public var annual: String?
    public var monthly: String?

    public init(annual: String? = nil, monthly: String? = nil) {
        self.annual = annual
        self.monthly = monthly
    }
}
