@@ -1072,6 +1072,10 @@ public enum Components {
1072
1072
public var raw_url : Swift . String ?
1073
1073
/// - Remark: Generated from `#/components/schemas/base-gist/files/additionalProperties/size`.
1074
1074
public var size : Swift . Int ?
1075
+ /// The encoding used for `content`. Currently, `"utf-8"` and `"base64"` are supported.
1076
+ ///
1077
+ /// - Remark: Generated from `#/components/schemas/base-gist/files/additionalProperties/encoding`.
1078
+ public var encoding : Swift . String ?
1075
1079
/// Creates a new `additionalPropertiesPayload`.
1076
1080
///
1077
1081
/// - Parameters:
@@ -1080,25 +1084,29 @@ public enum Components {
1080
1084
/// - language:
1081
1085
/// - raw_url:
1082
1086
/// - size:
1087
+ /// - encoding: The encoding used for `content`. Currently, `"utf-8"` and `"base64"` are supported.
1083
1088
public init (
1084
1089
filename: Swift . String ? = nil ,
1085
1090
_type: Swift . String ? = nil ,
1086
1091
language: Swift . String ? = nil ,
1087
1092
raw_url: Swift . String ? = nil ,
1088
- size: Swift . Int ? = nil
1093
+ size: Swift . Int ? = nil ,
1094
+ encoding: Swift . String ? = nil
1089
1095
) {
1090
1096
self . filename = filename
1091
1097
self . _type = _type
1092
1098
self . language = language
1093
1099
self . raw_url = raw_url
1094
1100
self . size = size
1101
+ self . encoding = encoding
1095
1102
}
1096
1103
public enum CodingKeys : String , CodingKey {
1097
1104
case filename
1098
1105
case _type = " type "
1099
1106
case language
1100
1107
case raw_url
1101
1108
case size
1109
+ case encoding
1102
1110
}
1103
1111
}
1104
1112
/// A container of undocumented properties.
@@ -2078,6 +2086,10 @@ public enum Components {
2078
2086
public var truncated : Swift . Bool ?
2079
2087
/// - Remark: Generated from `#/components/schemas/gist-simple/files/additionalProperties/content`.
2080
2088
public var content : Swift . String ?
2089
+ /// The encoding used for `content`. Currently, `"utf-8"` and `"base64"` are supported.
2090
+ ///
2091
+ /// - Remark: Generated from `#/components/schemas/gist-simple/files/additionalProperties/encoding`.
2092
+ public var encoding : Swift . String ?
2081
2093
/// Creates a new `additionalPropertiesPayload`.
2082
2094
///
2083
2095
/// - Parameters:
@@ -2088,14 +2100,16 @@ public enum Components {
2088
2100
/// - size:
2089
2101
/// - truncated:
2090
2102
/// - content:
2103
+ /// - encoding: The encoding used for `content`. Currently, `"utf-8"` and `"base64"` are supported.
2091
2104
public init (
2092
2105
filename: Swift . String ? = nil ,
2093
2106
_type: Swift . String ? = nil ,
2094
2107
language: Swift . String ? = nil ,
2095
2108
raw_url: Swift . String ? = nil ,
2096
2109
size: Swift . Int ? = nil ,
2097
2110
truncated: Swift . Bool ? = nil ,
2098
- content: Swift . String ? = nil
2111
+ content: Swift . String ? = nil ,
2112
+ encoding: Swift . String ? = nil
2099
2113
) {
2100
2114
self . filename = filename
2101
2115
self . _type = _type
@@ -2104,6 +2118,7 @@ public enum Components {
2104
2118
self . size = size
2105
2119
self . truncated = truncated
2106
2120
self . content = content
2121
+ self . encoding = encoding
2107
2122
}
2108
2123
public enum CodingKeys : String , CodingKey {
2109
2124
case filename
@@ -2113,6 +2128,7 @@ public enum Components {
2113
2128
case size
2114
2129
case truncated
2115
2130
case content
2131
+ case encoding
2116
2132
}
2117
2133
}
2118
2134
/// A container of undocumented properties.
0 commit comments