| 12345678910111213141516171819202122232425 |
- export interface AuthorizationRequest{
- jsCode?:string;
- }
- export interface TokenReply{
- token?:string;
- }
- export interface DebugLoginRequest{
- id?:string;
- code?:string;
- }
- export interface UserAndPartnerIdParam{
- partnerId?:string;
- userId?:string;
- }
- export interface User1AndUser2IdParam{
- user1?:string;
- user2?:string;
- }
- export interface PartnerIDParam{
- partnerID?:string;
- }
- export interface UserIDParam{
- userId?:string;
- }
|