Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run codegen for first party Objective-C to Swift RPC migration shim #435

Merged
merged 13 commits into from
Oct 24, 2024
2 changes: 2 additions & 0 deletions Source/SwiftyDropbox/Shared/Generated/Files.swift
Original file line number Diff line number Diff line change
Expand Up @@ -907,6 +907,8 @@ public class Files {

/// The FileOpsResult struct
public class FileOpsResult: CustomStringConvertible, JSONRepresentable {
public init() {}

func json() throws -> JSON {
try FileOpsResultSerializer().serialize(self)
}
Expand Down
2 changes: 2 additions & 0 deletions Source/SwiftyDropbox/Shared/Generated/Openid.swift
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ public class Openid {

/// No Parameters
public class UserInfoArgs: CustomStringConvertible, JSONRepresentable {
public init() {}

func json() throws -> JSON {
try UserInfoArgsSerializer().serialize(self)
}
Expand Down
6 changes: 6 additions & 0 deletions Source/SwiftyDropbox/Shared/Generated/Team.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12768,6 +12768,8 @@ public class Team {

/// This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone.
public class SharingAllowlistAddResponse: CustomStringConvertible, JSONRepresentable {
public init() {}

func json() throws -> JSON {
try SharingAllowlistAddResponseSerializer().serialize(self)
}
Expand Down Expand Up @@ -12937,6 +12939,8 @@ public class Team {

/// This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone.
public class SharingAllowlistListError: CustomStringConvertible, JSONRepresentable {
public init() {}

func json() throws -> JSON {
try SharingAllowlistListErrorSerializer().serialize(self)
}
Expand Down Expand Up @@ -13163,6 +13167,8 @@ public class Team {

/// This struct is empty. The comment here is intentionally emitted to avoid indentation issues with Stone.
public class SharingAllowlistRemoveResponse: CustomStringConvertible, JSONRepresentable {
public init() {}

func json() throws -> JSON {
try SharingAllowlistRemoveResponseSerializer().serialize(self)
}
Expand Down
Loading
Loading