-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP(#76-support-auth-header): list meetings history is independence
- Loading branch information
Showing
52 changed files
with
2,171 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
.../commonMain/kotlin/app/meetacy/sdk/engine/ktor/response/models/AcceptInvitationRequest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/** | ||
* Meetacy Backend API | ||
* _Version 1.0.2 of the `Meetacy` API documentation_. It is recommended to fill in the request body on your own according to the sample provided below. The `Notifications` section is under development. | ||
* | ||
* OpenAPI spec version: 1.0.2 | ||
* | ||
* | ||
* NOTE: This class is auto generated by the swagger code generator program. | ||
* https://github.com/swagger-api/swagger-codegen.git | ||
* Do not edit the class manually. | ||
*/ | ||
package app.meetacy.sdk.engine.ktor.response.models | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
|
||
|
||
|
||
|
||
|
||
import kotlinx.serialization.SerialName | ||
|
||
|
||
/** | ||
* | ||
* @param id | ||
*/ | ||
@Serializable | ||
internal data class AcceptInvitationRequest ( | ||
|
||
@SerialName("id") | ||
val id: String? = null | ||
|
||
) | ||
|
39 changes: 39 additions & 0 deletions
39
.../src/commonMain/kotlin/app/meetacy/sdk/engine/ktor/response/models/AccessAvatarRequest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/** | ||
* Meetacy Backend API | ||
* _Version 1.0.2 of the `Meetacy` API documentation_. It is recommended to fill in the request body on your own according to the sample provided below. The `Notifications` section is under development. | ||
* | ||
* OpenAPI spec version: 1.0.2 | ||
* | ||
* | ||
* NOTE: This class is auto generated by the swagger code generator program. | ||
* https://github.com/swagger-api/swagger-codegen.git | ||
* Do not edit the class manually. | ||
*/ | ||
package app.meetacy.sdk.engine.ktor.response.models | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
|
||
|
||
|
||
|
||
|
||
import kotlinx.serialization.SerialName | ||
|
||
|
||
/** | ||
* | ||
* @param accessIdentity | ||
* @param fileIdentity | ||
*/ | ||
@Serializable | ||
internal data class AccessAvatarRequest ( | ||
|
||
@SerialName("accessIdentity") | ||
val accessIdentity: String, | ||
|
||
@SerialName("fileIdentity") | ||
val fileIdentity: String? = null | ||
|
||
) | ||
|
35 changes: 35 additions & 0 deletions
35
.../src/commonMain/kotlin/app/meetacy/sdk/engine/ktor/response/models/AccessFriendRequest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/** | ||
* Meetacy Backend API | ||
* _Version 1.0.2 of the `Meetacy` API documentation_. It is recommended to fill in the request body on your own according to the sample provided below. The `Notifications` section is under development. | ||
* | ||
* OpenAPI spec version: 1.0.2 | ||
* | ||
* | ||
* NOTE: This class is auto generated by the swagger code generator program. | ||
* https://github.com/swagger-api/swagger-codegen.git | ||
* Do not edit the class manually. | ||
*/ | ||
package app.meetacy.sdk.engine.ktor.response.models | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
|
||
|
||
|
||
|
||
|
||
import kotlinx.serialization.SerialName | ||
|
||
|
||
/** | ||
* | ||
* @param friendId | ||
*/ | ||
@Serializable | ||
internal data class AccessFriendRequest ( | ||
|
||
@SerialName("friendId") | ||
val friendId: String | ||
|
||
) | ||
|
35 changes: 35 additions & 0 deletions
35
...rc/commonMain/kotlin/app/meetacy/sdk/engine/ktor/response/models/AccessIdentityRequest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/** | ||
* Meetacy Backend API | ||
* _Version 1.0.2 of the `Meetacy` API documentation_. It is recommended to fill in the request body on your own according to the sample provided below. The `Notifications` section is under development. | ||
* | ||
* OpenAPI spec version: 1.0.2 | ||
* | ||
* | ||
* NOTE: This class is auto generated by the swagger code generator program. | ||
* https://github.com/swagger-api/swagger-codegen.git | ||
* Do not edit the class manually. | ||
*/ | ||
package app.meetacy.sdk.engine.ktor.response.models | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
|
||
|
||
|
||
|
||
|
||
import kotlinx.serialization.SerialName | ||
|
||
|
||
/** | ||
* | ||
* @param accessIdentity | ||
*/ | ||
@Serializable | ||
internal data class AccessIdentityRequest ( | ||
|
||
@SerialName("accessIdentity") | ||
val accessIdentity: String | ||
|
||
) | ||
|
35 changes: 35 additions & 0 deletions
35
...c/commonMain/kotlin/app/meetacy/sdk/engine/ktor/response/models/AccessMeetingIdRequest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/** | ||
* Meetacy Backend API | ||
* _Version 1.0.2 of the `Meetacy` API documentation_. It is recommended to fill in the request body on your own according to the sample provided below. The `Notifications` section is under development. | ||
* | ||
* OpenAPI spec version: 1.0.2 | ||
* | ||
* | ||
* NOTE: This class is auto generated by the swagger code generator program. | ||
* https://github.com/swagger-api/swagger-codegen.git | ||
* Do not edit the class manually. | ||
*/ | ||
package app.meetacy.sdk.engine.ktor.response.models | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
|
||
|
||
|
||
|
||
|
||
import kotlinx.serialization.SerialName | ||
|
||
|
||
/** | ||
* | ||
* @param meetingId | ||
*/ | ||
@Serializable | ||
internal data class AccessMeetingIdRequest ( | ||
|
||
@SerialName("meetingId") | ||
val meetingId: String | ||
|
||
) | ||
|
35 changes: 35 additions & 0 deletions
35
.../commonMain/kotlin/app/meetacy/sdk/engine/ktor/response/models/CancelInvitationRequest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/** | ||
* Meetacy Backend API | ||
* _Version 1.0.2 of the `Meetacy` API documentation_. It is recommended to fill in the request body on your own according to the sample provided below. The `Notifications` section is under development. | ||
* | ||
* OpenAPI spec version: 1.0.2 | ||
* | ||
* | ||
* NOTE: This class is auto generated by the swagger code generator program. | ||
* https://github.com/swagger-api/swagger-codegen.git | ||
* Do not edit the class manually. | ||
*/ | ||
package app.meetacy.sdk.engine.ktor.response.models | ||
|
||
import kotlinx.serialization.Serializable | ||
|
||
|
||
|
||
|
||
|
||
|
||
import kotlinx.serialization.SerialName | ||
|
||
|
||
/** | ||
* | ||
* @param id | ||
*/ | ||
@Serializable | ||
internal data class CancelInvitationRequest ( | ||
|
||
@SerialName("id") | ||
val id: String | ||
|
||
) | ||
|
Oops, something went wrong.