9 lines
217 B
Swift
9 lines
217 B
Swift
import Foundation
|
|
|
|
public struct PrepareTransferResponse: Codable, Sendable, Equatable {
|
|
public let type: Int
|
|
public let key: String
|
|
/// "ready" | "no_space" | "duplicated"
|
|
public let status: String
|
|
}
|