ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.314.2

This commit is contained in:
speakeasybot
2024-06-22 00:14:04 +00:00
parent 3c7871adc5
commit d0adbbd22a
60 changed files with 2339 additions and 776 deletions

View File

@@ -0,0 +1,39 @@
// Code generated by Speakeasy (https://speakeasyapi.dev). DO NOT EDIT.
import Foundation
extension Operations {
/// A model object
public struct StatisticsBandwidth {
public let accountID: Int?
public let at: Int?
public let bytes: Int?
public let deviceID: Int?
public let lan: Bool?
public let timespan: Int?
/// Creates an object with the specified parameters
///
///
public init(accountID: Int? = nil, at: Int? = nil, bytes: Int? = nil, deviceID: Int? = nil, lan: Bool? = nil, timespan: Int? = nil) {
self.accountID = accountID
self.at = at
self.bytes = bytes
self.deviceID = deviceID
self.lan = lan
self.timespan = timespan
}
}
}
extension Operations.StatisticsBandwidth: Codable {
enum CodingKeys: String, CodingKey {
case accountID
case at
case bytes
case deviceID
case lan
case timespan
}
}