forked from loafle/openapi-generator-original
* [swift5] Add useSPMFileStructure Signed-off-by: Ayman Bagabas <ayman.bagabas@gmail.com> * [swift5] Add swiftPackagePath Prioritize swiftPackagePath over useSPMFileStructure * [swift5] Add cli options and update docs * [swift5] Fix tests * [swift5] Update XcodeGen source path * [swift5] Update samples and docs Add useSPMFileStructure to URLSession library
15 lines
521 B
Swift
15 lines
521 B
Swift
// Configuration.swift
|
|
//
|
|
// Generated by openapi-generator
|
|
// https://openapi-generator.tech
|
|
//
|
|
|
|
import Foundation
|
|
|
|
open class Configuration {
|
|
// This value is used to configure the date formatter that is used to serialize dates into JSON format.
|
|
// You must set it prior to encoding any dates, and it will only be read once.
|
|
@available(*, unavailable, message: "To set a different date format, use CodableHelper.dateFormatter instead.")
|
|
public static var dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSSZZZZZ"
|
|
}
|