@rusaint/react-native 0.10.0-dev.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (79) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +15 -0
  3. package/android/CMakeLists.txt +78 -0
  4. package/android/build.gradle +143 -0
  5. package/android/cpp-adapter.cpp +63 -0
  6. package/android/generated/java/dev/eatsteak/rusaint/reactnative/NativeReactNativeSpec.java +41 -0
  7. package/android/generated/jni/CMakeLists.txt +36 -0
  8. package/android/generated/jni/RNReactNativeSpec-generated.cpp +38 -0
  9. package/android/generated/jni/RNReactNativeSpec.h +31 -0
  10. package/android/generated/jni/react/renderer/components/RNReactNativeSpec/RNReactNativeSpecJSI-generated.cpp +32 -0
  11. package/android/generated/jni/react/renderer/components/RNReactNativeSpec/RNReactNativeSpecJSI.h +80 -0
  12. package/android/gradle.properties +5 -0
  13. package/android/src/main/AndroidManifest.xml +5 -0
  14. package/android/src/main/java/dev/eatsteak/rusaint/reactnative/ReactNativeModule.kt +43 -0
  15. package/android/src/main/java/dev/eatsteak/rusaint/reactnative/ReactNativePackage.kt +34 -0
  16. package/android/src/main/jniLibs/arm64-v8a/librusaint_ffi.a +0 -0
  17. package/android/src/main/jniLibs/armeabi-v7a/librusaint_ffi.a +0 -0
  18. package/android/src/main/jniLibs/x86/librusaint_ffi.a +0 -0
  19. package/android/src/main/jniLibs/x86_64/librusaint_ffi.a +0 -0
  20. package/build/RusaintReactNativeFramework.xcframework/Info.plist +43 -0
  21. package/build/RusaintReactNativeFramework.xcframework/ios-arm64/librusaint_ffi.a +0 -0
  22. package/build/RusaintReactNativeFramework.xcframework/ios-arm64-simulator/librusaint_ffi.a +0 -0
  23. package/cpp/generated/rusaint.cpp +2485 -0
  24. package/cpp/generated/rusaint.hpp +168 -0
  25. package/cpp/generated/rusaint_ffi.cpp +7397 -0
  26. package/cpp/generated/rusaint_ffi.hpp +873 -0
  27. package/cpp/rusaint-react-native.cpp +18 -0
  28. package/cpp/rusaint-react-native.h +15 -0
  29. package/ios/ReactNative.h +16 -0
  30. package/ios/ReactNative.mm +66 -0
  31. package/ios/generated/RNReactNativeSpec/RNReactNativeSpec-generated.mm +46 -0
  32. package/ios/generated/RNReactNativeSpec/RNReactNativeSpec.h +63 -0
  33. package/ios/generated/RNReactNativeSpecJSI-generated.cpp +32 -0
  34. package/ios/generated/RNReactNativeSpecJSI.h +80 -0
  35. package/lib/commonjs/NativeReactNative.ts +10 -0
  36. package/lib/commonjs/generated/rusaint-ffi.js +44 -0
  37. package/lib/commonjs/generated/rusaint-ffi.js.map +1 -0
  38. package/lib/commonjs/generated/rusaint.js +3232 -0
  39. package/lib/commonjs/generated/rusaint.js.map +1 -0
  40. package/lib/commonjs/generated/rusaint_ffi-ffi.js +44 -0
  41. package/lib/commonjs/generated/rusaint_ffi-ffi.js.map +1 -0
  42. package/lib/commonjs/generated/rusaint_ffi.js +2493 -0
  43. package/lib/commonjs/generated/rusaint_ffi.js.map +1 -0
  44. package/lib/commonjs/index.js +68 -0
  45. package/lib/commonjs/index.js.map +1 -0
  46. package/lib/commonjs/package.json +1 -0
  47. package/lib/module/NativeReactNative.ts +10 -0
  48. package/lib/module/generated/rusaint-ffi.js +43 -0
  49. package/lib/module/generated/rusaint-ffi.js.map +1 -0
  50. package/lib/module/generated/rusaint.js +3226 -0
  51. package/lib/module/generated/rusaint.js.map +1 -0
  52. package/lib/module/generated/rusaint_ffi-ffi.js +43 -0
  53. package/lib/module/generated/rusaint_ffi-ffi.js.map +1 -0
  54. package/lib/module/generated/rusaint_ffi.js +2469 -0
  55. package/lib/module/generated/rusaint_ffi.js.map +1 -0
  56. package/lib/module/index.js +40 -0
  57. package/lib/module/index.js.map +1 -0
  58. package/lib/module/package.json +1 -0
  59. package/lib/typescript/commonjs/src/NativeReactNative.d.ts +8 -0
  60. package/lib/typescript/commonjs/src/NativeReactNative.d.ts.map +1 -0
  61. package/lib/typescript/commonjs/src/generated/rusaint-ffi.d.ts +109 -0
  62. package/lib/typescript/commonjs/src/generated/rusaint-ffi.d.ts.map +1 -0
  63. package/lib/typescript/commonjs/src/generated/rusaint.d.ts +2330 -0
  64. package/lib/typescript/commonjs/src/generated/rusaint.d.ts.map +1 -0
  65. package/lib/typescript/commonjs/src/generated/rusaint_ffi-ffi.d.ts +300 -0
  66. package/lib/typescript/commonjs/src/generated/rusaint_ffi-ffi.d.ts.map +1 -0
  67. package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts +1111 -0
  68. package/lib/typescript/commonjs/src/generated/rusaint_ffi.d.ts.map +1 -0
  69. package/lib/typescript/commonjs/src/index.d.ts +10 -0
  70. package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
  71. package/package.json +185 -0
  72. package/react-native.config.js +12 -0
  73. package/rusaint-react-native.podspec +44 -0
  74. package/src/NativeReactNative.ts +10 -0
  75. package/src/generated/rusaint-ffi.ts +276 -0
  76. package/src/generated/rusaint.ts +4867 -0
  77. package/src/generated/rusaint_ffi-ffi.ts +832 -0
  78. package/src/generated/rusaint_ffi.ts +5519 -0
  79. package/src/index.tsx +38 -0
@@ -0,0 +1,2330 @@
1
+ import { type UniffiByteArray, type UniffiRustArcPtr, type UnsafeMutableRawPointer, FfiConverterObject, RustBuffer, UniffiAbstractObject, destructorGuardSymbol, pointerLiteralSymbol, uniffiTypeNameSymbol } from 'uniffi-bindgen-react-native';
2
+ /**
3
+ * 채플 결석신청 정보
4
+ */
5
+ export type ChapelAbsenceRequest = {
6
+ year: number;
7
+ semester: SemesterType;
8
+ absenceDetail: string;
9
+ absenceStart: string;
10
+ absenceEnd: string;
11
+ absenceReasonKr: string;
12
+ absenceReasonEn: string;
13
+ applicationDate: string;
14
+ approvalDate: string;
15
+ denialReason: string;
16
+ status: string;
17
+ };
18
+ /**
19
+ * Generated factory for {@link ChapelAbsenceRequest} record objects.
20
+ */
21
+ export declare const ChapelAbsenceRequest: Readonly<{
22
+ /**
23
+ * Create a frozen instance of {@link ChapelAbsenceRequest}, with defaults specified
24
+ * in Rust, in the {@link rusaint} crate.
25
+ */
26
+ create: (partial: Partial<ChapelAbsenceRequest> & Required<Omit<ChapelAbsenceRequest, never>>) => ChapelAbsenceRequest;
27
+ /**
28
+ * Create a frozen instance of {@link ChapelAbsenceRequest}, with defaults specified
29
+ * in Rust, in the {@link rusaint} crate.
30
+ */
31
+ new: (partial: Partial<ChapelAbsenceRequest> & Required<Omit<ChapelAbsenceRequest, never>>) => ChapelAbsenceRequest;
32
+ /**
33
+ * Defaults specified in the {@link rusaint} crate.
34
+ */
35
+ defaults: () => Partial<ChapelAbsenceRequest>;
36
+ }>;
37
+ /**
38
+ * 채플 수업별 출석정보
39
+ */
40
+ export type ChapelAttendance = {
41
+ division: number;
42
+ classDate: string;
43
+ category: string;
44
+ instructor: string;
45
+ instructorDepartment: string;
46
+ title: string;
47
+ attendance: string;
48
+ result: string;
49
+ note: string;
50
+ };
51
+ /**
52
+ * Generated factory for {@link ChapelAttendance} record objects.
53
+ */
54
+ export declare const ChapelAttendance: Readonly<{
55
+ /**
56
+ * Create a frozen instance of {@link ChapelAttendance}, with defaults specified
57
+ * in Rust, in the {@link rusaint} crate.
58
+ */
59
+ create: (partial: Partial<ChapelAttendance> & Required<Omit<ChapelAttendance, never>>) => ChapelAttendance;
60
+ /**
61
+ * Create a frozen instance of {@link ChapelAttendance}, with defaults specified
62
+ * in Rust, in the {@link rusaint} crate.
63
+ */
64
+ new: (partial: Partial<ChapelAttendance> & Required<Omit<ChapelAttendance, never>>) => ChapelAttendance;
65
+ /**
66
+ * Defaults specified in the {@link rusaint} crate.
67
+ */
68
+ defaults: () => Partial<ChapelAttendance>;
69
+ }>;
70
+ /**
71
+ * 학기별 채플 정보
72
+ */
73
+ export type ChapelInformation = {
74
+ year: number;
75
+ semester: SemesterType;
76
+ generalInformation: GeneralChapelInformation;
77
+ attendances: Array<ChapelAttendance>;
78
+ absenceRequests: Array<ChapelAbsenceRequest>;
79
+ };
80
+ /**
81
+ * Generated factory for {@link ChapelInformation} record objects.
82
+ */
83
+ export declare const ChapelInformation: Readonly<{
84
+ /**
85
+ * Create a frozen instance of {@link ChapelInformation}, with defaults specified
86
+ * in Rust, in the {@link rusaint} crate.
87
+ */
88
+ create: (partial: Partial<ChapelInformation> & Required<Omit<ChapelInformation, never>>) => ChapelInformation;
89
+ /**
90
+ * Create a frozen instance of {@link ChapelInformation}, with defaults specified
91
+ * in Rust, in the {@link rusaint} crate.
92
+ */
93
+ new: (partial: Partial<ChapelInformation> & Required<Omit<ChapelInformation, never>>) => ChapelInformation;
94
+ /**
95
+ * Defaults specified in the {@link rusaint} crate.
96
+ */
97
+ defaults: () => Partial<ChapelInformation>;
98
+ }>;
99
+ /**
100
+ * 과목별 성적
101
+ */
102
+ export type ClassGrade = {
103
+ /**
104
+ * 이수학년도
105
+ */
106
+ year: number;
107
+ /**
108
+ * 이수학기
109
+ */
110
+ semester: SemesterType;
111
+ /**
112
+ * 과목코드
113
+ */
114
+ code: string;
115
+ /**
116
+ * 과목명
117
+ */
118
+ className: string;
119
+ /**
120
+ * 과목학점
121
+ */
122
+ gradePoints: number;
123
+ /**
124
+ * 성적
125
+ */
126
+ score: ClassScore;
127
+ /**
128
+ * 등급
129
+ */
130
+ rank: string;
131
+ /**
132
+ * 교수명
133
+ */
134
+ professor: string;
135
+ /**
136
+ * 상세성적
137
+ */
138
+ detail: Map<string, /*f32*/ number> | undefined;
139
+ };
140
+ /**
141
+ * Generated factory for {@link ClassGrade} record objects.
142
+ */
143
+ export declare const ClassGrade: Readonly<{
144
+ /**
145
+ * Create a frozen instance of {@link ClassGrade}, with defaults specified
146
+ * in Rust, in the {@link rusaint} crate.
147
+ */
148
+ create: (partial: Partial<ClassGrade> & Required<Omit<ClassGrade, never>>) => ClassGrade;
149
+ /**
150
+ * Create a frozen instance of {@link ClassGrade}, with defaults specified
151
+ * in Rust, in the {@link rusaint} crate.
152
+ */
153
+ new: (partial: Partial<ClassGrade> & Required<Omit<ClassGrade, never>>) => ClassGrade;
154
+ /**
155
+ * Defaults specified in the {@link rusaint} crate.
156
+ */
157
+ defaults: () => Partial<ClassGrade>;
158
+ }>;
159
+ /**
160
+ * 강의의 시간표 정보입니다.
161
+ */
162
+ export type CourseScheduleInformation = {
163
+ name: string;
164
+ professor: string;
165
+ time: string;
166
+ classroom: string;
167
+ };
168
+ /**
169
+ * Generated factory for {@link CourseScheduleInformation} record objects.
170
+ */
171
+ export declare const CourseScheduleInformation: Readonly<{
172
+ /**
173
+ * Create a frozen instance of {@link CourseScheduleInformation}, with defaults specified
174
+ * in Rust, in the {@link rusaint} crate.
175
+ */
176
+ create: (partial: Partial<CourseScheduleInformation> & Required<Omit<CourseScheduleInformation, never>>) => CourseScheduleInformation;
177
+ /**
178
+ * Create a frozen instance of {@link CourseScheduleInformation}, with defaults specified
179
+ * in Rust, in the {@link rusaint} crate.
180
+ */
181
+ new: (partial: Partial<CourseScheduleInformation> & Required<Omit<CourseScheduleInformation, never>>) => CourseScheduleInformation;
182
+ /**
183
+ * Defaults specified in the {@link rusaint} crate.
184
+ */
185
+ defaults: () => Partial<CourseScheduleInformation>;
186
+ }>;
187
+ /**
188
+ * 채플 기본 정보(좌석번호, 결석현황, 성적결과)
189
+ */
190
+ export type GeneralChapelInformation = {
191
+ division: number;
192
+ chapelTime: string;
193
+ chapelRoom: string;
194
+ floorLevel: number;
195
+ seatNumber: string;
196
+ absenceTime: number;
197
+ result: string;
198
+ note: string;
199
+ };
200
+ /**
201
+ * Generated factory for {@link GeneralChapelInformation} record objects.
202
+ */
203
+ export declare const GeneralChapelInformation: Readonly<{
204
+ /**
205
+ * Create a frozen instance of {@link GeneralChapelInformation}, with defaults specified
206
+ * in Rust, in the {@link rusaint} crate.
207
+ */
208
+ create: (partial: Partial<GeneralChapelInformation> & Required<Omit<GeneralChapelInformation, never>>) => GeneralChapelInformation;
209
+ /**
210
+ * Create a frozen instance of {@link GeneralChapelInformation}, with defaults specified
211
+ * in Rust, in the {@link rusaint} crate.
212
+ */
213
+ new: (partial: Partial<GeneralChapelInformation> & Required<Omit<GeneralChapelInformation, never>>) => GeneralChapelInformation;
214
+ /**
215
+ * Defaults specified in the {@link rusaint} crate.
216
+ */
217
+ defaults: () => Partial<GeneralChapelInformation>;
218
+ }>;
219
+ /**
220
+ * 전체 성적(학적부, 증명)
221
+ */
222
+ export type GradeSummary = {
223
+ /**
224
+ * 신청학점
225
+ */
226
+ attemptedCredits: number;
227
+ /**
228
+ * 취득학점
229
+ */
230
+ earnedCredits: number;
231
+ /**
232
+ * 평점계
233
+ */
234
+ gradePointsSum: number;
235
+ /**
236
+ * 평점평균
237
+ */
238
+ gradePointsAverage: number;
239
+ /**
240
+ * 산술평균
241
+ */
242
+ arithmeticMean: number;
243
+ /**
244
+ * P/F 학점계
245
+ */
246
+ pfEarnedCredits: number;
247
+ };
248
+ /**
249
+ * Generated factory for {@link GradeSummary} record objects.
250
+ */
251
+ export declare const GradeSummary: Readonly<{
252
+ /**
253
+ * Create a frozen instance of {@link GradeSummary}, with defaults specified
254
+ * in Rust, in the {@link rusaint} crate.
255
+ */
256
+ create: (partial: Partial<GradeSummary> & Required<Omit<GradeSummary, never>>) => GradeSummary;
257
+ /**
258
+ * Create a frozen instance of {@link GradeSummary}, with defaults specified
259
+ * in Rust, in the {@link rusaint} crate.
260
+ */
261
+ new: (partial: Partial<GradeSummary> & Required<Omit<GradeSummary, never>>) => GradeSummary;
262
+ /**
263
+ * Defaults specified in the {@link rusaint} crate.
264
+ */
265
+ defaults: () => Partial<GradeSummary>;
266
+ }>;
267
+ /**
268
+ * 졸업 요건
269
+ */
270
+ export type GraduationRequirement = {
271
+ name: string;
272
+ requirement: /*u32*/ number | undefined;
273
+ calcuation: /*f32*/ number | undefined;
274
+ difference: /*f32*/ number | undefined;
275
+ result: boolean;
276
+ category: string;
277
+ lectures: Array<string>;
278
+ };
279
+ /**
280
+ * Generated factory for {@link GraduationRequirement} record objects.
281
+ */
282
+ export declare const GraduationRequirement: Readonly<{
283
+ /**
284
+ * Create a frozen instance of {@link GraduationRequirement}, with defaults specified
285
+ * in Rust, in the {@link rusaint} crate.
286
+ */
287
+ create: (partial: Partial<GraduationRequirement> & Required<Omit<GraduationRequirement, never>>) => GraduationRequirement;
288
+ /**
289
+ * Create a frozen instance of {@link GraduationRequirement}, with defaults specified
290
+ * in Rust, in the {@link rusaint} crate.
291
+ */
292
+ new: (partial: Partial<GraduationRequirement> & Required<Omit<GraduationRequirement, never>>) => GraduationRequirement;
293
+ /**
294
+ * Defaults specified in the {@link rusaint} crate.
295
+ */
296
+ defaults: () => Partial<GraduationRequirement>;
297
+ }>;
298
+ /**
299
+ * 전체 졸업 요건 정보
300
+ */
301
+ export type GraduationRequirements = {
302
+ isGraduatable: boolean;
303
+ requirements: Map<string, GraduationRequirement>;
304
+ };
305
+ /**
306
+ * Generated factory for {@link GraduationRequirements} record objects.
307
+ */
308
+ export declare const GraduationRequirements: Readonly<{
309
+ /**
310
+ * Create a frozen instance of {@link GraduationRequirements}, with defaults specified
311
+ * in Rust, in the {@link rusaint} crate.
312
+ */
313
+ create: (partial: Partial<GraduationRequirements> & Required<Omit<GraduationRequirements, never>>) => GraduationRequirements;
314
+ /**
315
+ * Create a frozen instance of {@link GraduationRequirements}, with defaults specified
316
+ * in Rust, in the {@link rusaint} crate.
317
+ */
318
+ new: (partial: Partial<GraduationRequirements> & Required<Omit<GraduationRequirements, never>>) => GraduationRequirements;
319
+ /**
320
+ * Defaults specified in the {@link rusaint} crate.
321
+ */
322
+ defaults: () => Partial<GraduationRequirements>;
323
+ }>;
324
+ /**
325
+ * 졸업 학생 정보
326
+ */
327
+ export type GraduationStudent = {
328
+ number: number;
329
+ name: string;
330
+ grade: number;
331
+ semester: number;
332
+ status: string;
333
+ applyYear: number;
334
+ applyType: string;
335
+ department: string;
336
+ majors: Array<string>;
337
+ auditDate: string;
338
+ graduationPoints: number;
339
+ completedPoints: number;
340
+ };
341
+ /**
342
+ * Generated factory for {@link GraduationStudent} record objects.
343
+ */
344
+ export declare const GraduationStudent: Readonly<{
345
+ /**
346
+ * Create a frozen instance of {@link GraduationStudent}, with defaults specified
347
+ * in Rust, in the {@link rusaint} crate.
348
+ */
349
+ create: (partial: Partial<GraduationStudent> & Required<Omit<GraduationStudent, never>>) => GraduationStudent;
350
+ /**
351
+ * Create a frozen instance of {@link GraduationStudent}, with defaults specified
352
+ * in Rust, in the {@link rusaint} crate.
353
+ */
354
+ new: (partial: Partial<GraduationStudent> & Required<Omit<GraduationStudent, never>>) => GraduationStudent;
355
+ /**
356
+ * Defaults specified in the {@link rusaint} crate.
357
+ */
358
+ defaults: () => Partial<GraduationStudent>;
359
+ }>;
360
+ /**
361
+ * 과목 정보
362
+ */
363
+ export type Lecture = {
364
+ /**
365
+ * 계획
366
+ */
367
+ syllabus: string | undefined;
368
+ /**
369
+ * 이수구분(주전공)
370
+ */
371
+ category: string;
372
+ /**
373
+ * 이수구분(다전공)
374
+ */
375
+ subCategory: string | undefined;
376
+ /**
377
+ * 공학인증
378
+ */
379
+ abeekInfo: string | undefined;
380
+ /**
381
+ * 교과영역
382
+ */
383
+ field: string | undefined;
384
+ /**
385
+ * 과목번호
386
+ */
387
+ code: string;
388
+ /**
389
+ * 과목명
390
+ */
391
+ name: string;
392
+ /**
393
+ * 분반
394
+ */
395
+ division: string | undefined;
396
+ /**
397
+ * 교수명
398
+ */
399
+ professor: string;
400
+ /**
401
+ * 개설학과
402
+ */
403
+ department: string;
404
+ /**
405
+ * 시간/학점(설계)
406
+ */
407
+ timePoints: string;
408
+ /**
409
+ * 수강인원
410
+ */
411
+ personeel: string;
412
+ /**
413
+ * 여석
414
+ */
415
+ remainingSeats: string;
416
+ /**
417
+ * 강의시간(강의실)
418
+ */
419
+ scheduleRoom: string;
420
+ /**
421
+ * 수강대상
422
+ */
423
+ target: string;
424
+ };
425
+ /**
426
+ * Generated factory for {@link Lecture} record objects.
427
+ */
428
+ export declare const Lecture: Readonly<{
429
+ /**
430
+ * Create a frozen instance of {@link Lecture}, with defaults specified
431
+ * in Rust, in the {@link rusaint} crate.
432
+ */
433
+ create: (partial: Partial<Lecture> & Required<Omit<Lecture, never>>) => Lecture;
434
+ /**
435
+ * Create a frozen instance of {@link Lecture}, with defaults specified
436
+ * in Rust, in the {@link rusaint} crate.
437
+ */
438
+ new: (partial: Partial<Lecture> & Required<Omit<Lecture, never>>) => Lecture;
439
+ /**
440
+ * Defaults specified in the {@link rusaint} crate.
441
+ */
442
+ defaults: () => Partial<Lecture>;
443
+ }>;
444
+ /**
445
+ * 강의평가 결과
446
+ */
447
+ export type LectureAssessmentResult = {
448
+ year: string;
449
+ semester: SemesterType;
450
+ lectureCode: number;
451
+ lectureName: string;
452
+ points: number;
453
+ professor: string;
454
+ collage: string;
455
+ department: string;
456
+ position: string;
457
+ score: number;
458
+ };
459
+ /**
460
+ * Generated factory for {@link LectureAssessmentResult} record objects.
461
+ */
462
+ export declare const LectureAssessmentResult: Readonly<{
463
+ /**
464
+ * Create a frozen instance of {@link LectureAssessmentResult}, with defaults specified
465
+ * in Rust, in the {@link rusaint} crate.
466
+ */
467
+ create: (partial: Partial<LectureAssessmentResult> & Required<Omit<LectureAssessmentResult, never>>) => LectureAssessmentResult;
468
+ /**
469
+ * Create a frozen instance of {@link LectureAssessmentResult}, with defaults specified
470
+ * in Rust, in the {@link rusaint} crate.
471
+ */
472
+ new: (partial: Partial<LectureAssessmentResult> & Required<Omit<LectureAssessmentResult, never>>) => LectureAssessmentResult;
473
+ /**
474
+ * Defaults specified in the {@link rusaint} crate.
475
+ */
476
+ defaults: () => Partial<LectureAssessmentResult>;
477
+ }>;
478
+ /**
479
+ * 개인의 수업 시간표 정보를 조회합니다.
480
+ */
481
+ export type PersonalCourseSchedule = {
482
+ schedule: Map<Weekday, Array<CourseScheduleInformation>>;
483
+ };
484
+ /**
485
+ * Generated factory for {@link PersonalCourseSchedule} record objects.
486
+ */
487
+ export declare const PersonalCourseSchedule: Readonly<{
488
+ /**
489
+ * Create a frozen instance of {@link PersonalCourseSchedule}, with defaults specified
490
+ * in Rust, in the {@link rusaint} crate.
491
+ */
492
+ create: (partial: Partial<PersonalCourseSchedule> & Required<Omit<PersonalCourseSchedule, never>>) => PersonalCourseSchedule;
493
+ /**
494
+ * Create a frozen instance of {@link PersonalCourseSchedule}, with defaults specified
495
+ * in Rust, in the {@link rusaint} crate.
496
+ */
497
+ new: (partial: Partial<PersonalCourseSchedule> & Required<Omit<PersonalCourseSchedule, never>>) => PersonalCourseSchedule;
498
+ /**
499
+ * Defaults specified in the {@link rusaint} crate.
500
+ */
501
+ defaults: () => Partial<PersonalCourseSchedule>;
502
+ }>;
503
+ /**
504
+ * 수혜받은 장학금 정보
505
+ */
506
+ export type Scholarship = {
507
+ year: number;
508
+ semester: SemesterType;
509
+ name: string;
510
+ receivedAmount: bigint;
511
+ receiveType: string;
512
+ status: string;
513
+ processedAt: string;
514
+ selectedAmount: bigint;
515
+ refundedAmount: bigint;
516
+ replacedAmount: bigint;
517
+ replacedBy: string;
518
+ dropReason: string;
519
+ note: string;
520
+ workedAt: string;
521
+ };
522
+ /**
523
+ * Generated factory for {@link Scholarship} record objects.
524
+ */
525
+ export declare const Scholarship: Readonly<{
526
+ /**
527
+ * Create a frozen instance of {@link Scholarship}, with defaults specified
528
+ * in Rust, in the {@link rusaint} crate.
529
+ */
530
+ create: (partial: Partial<Scholarship> & Required<Omit<Scholarship, never>>) => Scholarship;
531
+ /**
532
+ * Create a frozen instance of {@link Scholarship}, with defaults specified
533
+ * in Rust, in the {@link rusaint} crate.
534
+ */
535
+ new: (partial: Partial<Scholarship> & Required<Omit<Scholarship, never>>) => Scholarship;
536
+ /**
537
+ * Defaults specified in the {@link rusaint} crate.
538
+ */
539
+ defaults: () => Partial<Scholarship>;
540
+ }>;
541
+ /**
542
+ * 학기별 성적
543
+ */
544
+ export type SemesterGrade = {
545
+ /**
546
+ * 학년도
547
+ */
548
+ year: number;
549
+ /**
550
+ * 학기
551
+ */
552
+ semester: SemesterType;
553
+ /**
554
+ * 신청학점
555
+ */
556
+ attemptedCredits: number;
557
+ /**
558
+ * 취득학점
559
+ */
560
+ earnedCredits: number;
561
+ /**
562
+ * P/F학점
563
+ */
564
+ pfEarnedCredits: number;
565
+ /**
566
+ * 평점평균
567
+ */
568
+ gradePointsAverage: number;
569
+ /**
570
+ * 평점계
571
+ */
572
+ gradePointsSum: number;
573
+ /**
574
+ * 산술평균
575
+ */
576
+ arithmeticMean: number;
577
+ /**
578
+ * 학기별석차
579
+ */
580
+ semesterRank: U32Pair;
581
+ /**
582
+ * 전체석차
583
+ */
584
+ generalRank: U32Pair;
585
+ /**
586
+ * 학사경고
587
+ */
588
+ academicProbation: boolean;
589
+ /**
590
+ * 상담여부
591
+ */
592
+ consult: boolean;
593
+ /**
594
+ * 유급
595
+ */
596
+ flunked: boolean;
597
+ };
598
+ /**
599
+ * Generated factory for {@link SemesterGrade} record objects.
600
+ */
601
+ export declare const SemesterGrade: Readonly<{
602
+ /**
603
+ * Create a frozen instance of {@link SemesterGrade}, with defaults specified
604
+ * in Rust, in the {@link rusaint} crate.
605
+ */
606
+ create: (partial: Partial<SemesterGrade> & Required<Omit<SemesterGrade, never>>) => SemesterGrade;
607
+ /**
608
+ * Create a frozen instance of {@link SemesterGrade}, with defaults specified
609
+ * in Rust, in the {@link rusaint} crate.
610
+ */
611
+ new: (partial: Partial<SemesterGrade> & Required<Omit<SemesterGrade, never>>) => SemesterGrade;
612
+ /**
613
+ * Defaults specified in the {@link rusaint} crate.
614
+ */
615
+ defaults: () => Partial<SemesterGrade>;
616
+ }>;
617
+ /**
618
+ * 학생의 학적상태 기록
619
+ */
620
+ export type StudentAcademicRecord = {
621
+ startDate: string;
622
+ endDate: string;
623
+ year: string;
624
+ term: string;
625
+ category: string;
626
+ reason: string;
627
+ processDate: string;
628
+ };
629
+ /**
630
+ * Generated factory for {@link StudentAcademicRecord} record objects.
631
+ */
632
+ export declare const StudentAcademicRecord: Readonly<{
633
+ /**
634
+ * Create a frozen instance of {@link StudentAcademicRecord}, with defaults specified
635
+ * in Rust, in the {@link rusaint} crate.
636
+ */
637
+ create: (partial: Partial<StudentAcademicRecord> & Required<Omit<StudentAcademicRecord, never>>) => StudentAcademicRecord;
638
+ /**
639
+ * Create a frozen instance of {@link StudentAcademicRecord}, with defaults specified
640
+ * in Rust, in the {@link rusaint} crate.
641
+ */
642
+ new: (partial: Partial<StudentAcademicRecord> & Required<Omit<StudentAcademicRecord, never>>) => StudentAcademicRecord;
643
+ /**
644
+ * Defaults specified in the {@link rusaint} crate.
645
+ */
646
+ defaults: () => Partial<StudentAcademicRecord>;
647
+ }>;
648
+ /**
649
+ * 학생의 학적상태 정보
650
+ */
651
+ export type StudentAcademicRecords = {
652
+ records: Array<StudentAcademicRecord>;
653
+ };
654
+ /**
655
+ * Generated factory for {@link StudentAcademicRecords} record objects.
656
+ */
657
+ export declare const StudentAcademicRecords: Readonly<{
658
+ /**
659
+ * Create a frozen instance of {@link StudentAcademicRecords}, with defaults specified
660
+ * in Rust, in the {@link rusaint} crate.
661
+ */
662
+ create: (partial: Partial<StudentAcademicRecords> & Required<Omit<StudentAcademicRecords, never>>) => StudentAcademicRecords;
663
+ /**
664
+ * Create a frozen instance of {@link StudentAcademicRecords}, with defaults specified
665
+ * in Rust, in the {@link rusaint} crate.
666
+ */
667
+ new: (partial: Partial<StudentAcademicRecords> & Required<Omit<StudentAcademicRecords, never>>) => StudentAcademicRecords;
668
+ /**
669
+ * Defaults specified in the {@link rusaint} crate.
670
+ */
671
+ defaults: () => Partial<StudentAcademicRecords>;
672
+ }>;
673
+ /**
674
+ * 학생의 은행 계좌 정보
675
+ */
676
+ export type StudentBankAccount = {
677
+ bank: string | undefined;
678
+ accountNumber: string | undefined;
679
+ holder: string | undefined;
680
+ };
681
+ /**
682
+ * Generated factory for {@link StudentBankAccount} record objects.
683
+ */
684
+ export declare const StudentBankAccount: Readonly<{
685
+ /**
686
+ * Create a frozen instance of {@link StudentBankAccount}, with defaults specified
687
+ * in Rust, in the {@link rusaint} crate.
688
+ */
689
+ create: (partial: Partial<StudentBankAccount> & Required<Omit<StudentBankAccount, never>>) => StudentBankAccount;
690
+ /**
691
+ * Create a frozen instance of {@link StudentBankAccount}, with defaults specified
692
+ * in Rust, in the {@link rusaint} crate.
693
+ */
694
+ new: (partial: Partial<StudentBankAccount> & Required<Omit<StudentBankAccount, never>>) => StudentBankAccount;
695
+ /**
696
+ * Defaults specified in the {@link rusaint} crate.
697
+ */
698
+ defaults: () => Partial<StudentBankAccount>;
699
+ }>;
700
+ /**
701
+ * 학생의 가족관계 정보
702
+ */
703
+ export type StudentFamily = {
704
+ members: Array<StudentFamilyMember>;
705
+ };
706
+ /**
707
+ * Generated factory for {@link StudentFamily} record objects.
708
+ */
709
+ export declare const StudentFamily: Readonly<{
710
+ /**
711
+ * Create a frozen instance of {@link StudentFamily}, with defaults specified
712
+ * in Rust, in the {@link rusaint} crate.
713
+ */
714
+ create: (partial: Partial<StudentFamily> & Required<Omit<StudentFamily, never>>) => StudentFamily;
715
+ /**
716
+ * Create a frozen instance of {@link StudentFamily}, with defaults specified
717
+ * in Rust, in the {@link rusaint} crate.
718
+ */
719
+ new: (partial: Partial<StudentFamily> & Required<Omit<StudentFamily, never>>) => StudentFamily;
720
+ /**
721
+ * Defaults specified in the {@link rusaint} crate.
722
+ */
723
+ defaults: () => Partial<StudentFamily>;
724
+ }>;
725
+ /**
726
+ * 학생의 가족 구성원
727
+ */
728
+ export type StudentFamilyMember = {
729
+ relationType: string | undefined;
730
+ telNumber: string | undefined;
731
+ name: string | undefined;
732
+ mobileNumber: string | undefined;
733
+ office: string | undefined;
734
+ job: string | undefined;
735
+ position: string | undefined;
736
+ isGuardian: boolean;
737
+ isCohabit: boolean;
738
+ };
739
+ /**
740
+ * Generated factory for {@link StudentFamilyMember} record objects.
741
+ */
742
+ export declare const StudentFamilyMember: Readonly<{
743
+ /**
744
+ * Create a frozen instance of {@link StudentFamilyMember}, with defaults specified
745
+ * in Rust, in the {@link rusaint} crate.
746
+ */
747
+ create: (partial: Partial<StudentFamilyMember> & Required<Omit<StudentFamilyMember, never>>) => StudentFamilyMember;
748
+ /**
749
+ * Create a frozen instance of {@link StudentFamilyMember}, with defaults specified
750
+ * in Rust, in the {@link rusaint} crate.
751
+ */
752
+ new: (partial: Partial<StudentFamilyMember> & Required<Omit<StudentFamilyMember, never>>) => StudentFamilyMember;
753
+ /**
754
+ * Defaults specified in the {@link rusaint} crate.
755
+ */
756
+ defaults: () => Partial<StudentFamilyMember>;
757
+ }>;
758
+ /**
759
+ * 7+1 프로그램 정보를 반환합니다.
760
+ */
761
+ export type StudentForignStudyInformation = {
762
+ approvalDate: string | undefined;
763
+ authenticationNumber: string | undefined;
764
+ issueDate: string | undefined;
765
+ };
766
+ /**
767
+ * Generated factory for {@link StudentForignStudyInformation} record objects.
768
+ */
769
+ export declare const StudentForignStudyInformation: Readonly<{
770
+ /**
771
+ * Create a frozen instance of {@link StudentForignStudyInformation}, with defaults specified
772
+ * in Rust, in the {@link rusaint} crate.
773
+ */
774
+ create: (partial: Partial<StudentForignStudyInformation> & Required<Omit<StudentForignStudyInformation, never>>) => StudentForignStudyInformation;
775
+ /**
776
+ * Create a frozen instance of {@link StudentForignStudyInformation}, with defaults specified
777
+ * in Rust, in the {@link rusaint} crate.
778
+ */
779
+ new: (partial: Partial<StudentForignStudyInformation> & Required<Omit<StudentForignStudyInformation, never>>) => StudentForignStudyInformation;
780
+ /**
781
+ * Defaults specified in the {@link rusaint} crate.
782
+ */
783
+ defaults: () => Partial<StudentForignStudyInformation>;
784
+ }>;
785
+ /**
786
+ * 학생의 졸업 정보를 반환합니다. 졸업하지 않았다면 반환되지 않습니다.
787
+ */
788
+ export type StudentGraduation = {
789
+ graduationCardinal: number;
790
+ graduationCertificationNumber: number;
791
+ graduationYear: number;
792
+ graduationTerms: number;
793
+ graduationDate: string;
794
+ academicDegreeNumber: number;
795
+ academicDegreeName: string;
796
+ earlyGraduation: boolean;
797
+ graduationRank: number;
798
+ graduationPersonnelNumber: number;
799
+ };
800
+ /**
801
+ * Generated factory for {@link StudentGraduation} record objects.
802
+ */
803
+ export declare const StudentGraduation: Readonly<{
804
+ /**
805
+ * Create a frozen instance of {@link StudentGraduation}, with defaults specified
806
+ * in Rust, in the {@link rusaint} crate.
807
+ */
808
+ create: (partial: Partial<StudentGraduation> & Required<Omit<StudentGraduation, never>>) => StudentGraduation;
809
+ /**
810
+ * Create a frozen instance of {@link StudentGraduation}, with defaults specified
811
+ * in Rust, in the {@link rusaint} crate.
812
+ */
813
+ new: (partial: Partial<StudentGraduation> & Required<Omit<StudentGraduation, never>>) => StudentGraduation;
814
+ /**
815
+ * Defaults specified in the {@link rusaint} crate.
816
+ */
817
+ defaults: () => Partial<StudentGraduation>;
818
+ }>;
819
+ /**
820
+ * 기본 학생 정보
821
+ */
822
+ export type StudentInformation = {
823
+ applyYear: number;
824
+ studentNumber: number;
825
+ name: string;
826
+ rrn: number;
827
+ collage: string;
828
+ department: string;
829
+ major: string | undefined;
830
+ division: string | undefined;
831
+ grade: number;
832
+ term: number;
833
+ image: ArrayBuffer;
834
+ alias: string | undefined;
835
+ kanjiName: string | undefined;
836
+ email: string | undefined;
837
+ telNumber: string | undefined;
838
+ mobileNumber: string | undefined;
839
+ postCode: string | undefined;
840
+ address: string | undefined;
841
+ specificAddress: string | undefined;
842
+ isTransferStudent: boolean;
843
+ applyDate: string;
844
+ appliedCollage: string;
845
+ appliedDepartment: string;
846
+ pluralMajor: string | undefined;
847
+ subMajor: string | undefined;
848
+ connectedMajor: string | undefined;
849
+ abeek: string | undefined;
850
+ };
851
+ /**
852
+ * Generated factory for {@link StudentInformation} record objects.
853
+ */
854
+ export declare const StudentInformation: Readonly<{
855
+ /**
856
+ * Create a frozen instance of {@link StudentInformation}, with defaults specified
857
+ * in Rust, in the {@link rusaint} crate.
858
+ */
859
+ create: (partial: Partial<StudentInformation> & Required<Omit<StudentInformation, never>>) => StudentInformation;
860
+ /**
861
+ * Create a frozen instance of {@link StudentInformation}, with defaults specified
862
+ * in Rust, in the {@link rusaint} crate.
863
+ */
864
+ new: (partial: Partial<StudentInformation> & Required<Omit<StudentInformation, never>>) => StudentInformation;
865
+ /**
866
+ * Defaults specified in the {@link rusaint} crate.
867
+ */
868
+ defaults: () => Partial<StudentInformation>;
869
+ }>;
870
+ /**
871
+ * 평생교육사 정보
872
+ */
873
+ export type StudentLifelongInformation = {
874
+ applyDate: string | undefined;
875
+ lifelongType: string | undefined;
876
+ qualificationNumber: string | undefined;
877
+ qualificationDate: string | undefined;
878
+ };
879
+ /**
880
+ * Generated factory for {@link StudentLifelongInformation} record objects.
881
+ */
882
+ export declare const StudentLifelongInformation: Readonly<{
883
+ /**
884
+ * Create a frozen instance of {@link StudentLifelongInformation}, with defaults specified
885
+ * in Rust, in the {@link rusaint} crate.
886
+ */
887
+ create: (partial: Partial<StudentLifelongInformation> & Required<Omit<StudentLifelongInformation, never>>) => StudentLifelongInformation;
888
+ /**
889
+ * Create a frozen instance of {@link StudentLifelongInformation}, with defaults specified
890
+ * in Rust, in the {@link rusaint} crate.
891
+ */
892
+ new: (partial: Partial<StudentLifelongInformation> & Required<Omit<StudentLifelongInformation, never>>) => StudentLifelongInformation;
893
+ /**
894
+ * Defaults specified in the {@link rusaint} crate.
895
+ */
896
+ defaults: () => Partial<StudentLifelongInformation>;
897
+ }>;
898
+ /**
899
+ * 학생의 자격(교직이수, 평생교육사, 7+1 프로그램) 정보
900
+ */
901
+ export type StudentQualification = {
902
+ teachingMajor: StudentTeachingMajorInformation | undefined;
903
+ teachingPluralMajor: StudentTeachingPluralMajorInformation | undefined;
904
+ lifelong: StudentLifelongInformation | undefined;
905
+ forignStudy: StudentForignStudyInformation | undefined;
906
+ };
907
+ /**
908
+ * Generated factory for {@link StudentQualification} record objects.
909
+ */
910
+ export declare const StudentQualification: Readonly<{
911
+ /**
912
+ * Create a frozen instance of {@link StudentQualification}, with defaults specified
913
+ * in Rust, in the {@link rusaint} crate.
914
+ */
915
+ create: (partial: Partial<StudentQualification> & Required<Omit<StudentQualification, never>>) => StudentQualification;
916
+ /**
917
+ * Create a frozen instance of {@link StudentQualification}, with defaults specified
918
+ * in Rust, in the {@link rusaint} crate.
919
+ */
920
+ new: (partial: Partial<StudentQualification> & Required<Omit<StudentQualification, never>>) => StudentQualification;
921
+ /**
922
+ * Defaults specified in the {@link rusaint} crate.
923
+ */
924
+ defaults: () => Partial<StudentQualification>;
925
+ }>;
926
+ /**
927
+ * 학생의 종교 정보
928
+ */
929
+ export type StudentReligion = {
930
+ religionType: string | undefined;
931
+ startDate: string | undefined;
932
+ church: string | undefined;
933
+ churchMan: string | undefined;
934
+ baptismLevel: string | undefined;
935
+ baptismGrp: string | undefined;
936
+ serviceDepartment: string | undefined;
937
+ serviceDepartmentTitle: string | undefined;
938
+ churchAddress: string | undefined;
939
+ singeub: string | undefined;
940
+ baptismDate: string | undefined;
941
+ baptismChurch: string | undefined;
942
+ baptismMan: string | undefined;
943
+ churchGrp: string | undefined;
944
+ };
945
+ /**
946
+ * Generated factory for {@link StudentReligion} record objects.
947
+ */
948
+ export declare const StudentReligion: Readonly<{
949
+ /**
950
+ * Create a frozen instance of {@link StudentReligion}, with defaults specified
951
+ * in Rust, in the {@link rusaint} crate.
952
+ */
953
+ create: (partial: Partial<StudentReligion> & Required<Omit<StudentReligion, never>>) => StudentReligion;
954
+ /**
955
+ * Create a frozen instance of {@link StudentReligion}, with defaults specified
956
+ * in Rust, in the {@link rusaint} crate.
957
+ */
958
+ new: (partial: Partial<StudentReligion> & Required<Omit<StudentReligion, never>>) => StudentReligion;
959
+ /**
960
+ * Defaults specified in the {@link rusaint} crate.
961
+ */
962
+ defaults: () => Partial<StudentReligion>;
963
+ }>;
964
+ /**
965
+ * 연구비 입금 계좌 정보
966
+ */
967
+ export type StudentResearchBankAccount = {
968
+ bank: string | undefined;
969
+ accountNumber: string | undefined;
970
+ holder: string | undefined;
971
+ };
972
+ /**
973
+ * Generated factory for {@link StudentResearchBankAccount} record objects.
974
+ */
975
+ export declare const StudentResearchBankAccount: Readonly<{
976
+ /**
977
+ * Create a frozen instance of {@link StudentResearchBankAccount}, with defaults specified
978
+ * in Rust, in the {@link rusaint} crate.
979
+ */
980
+ create: (partial: Partial<StudentResearchBankAccount> & Required<Omit<StudentResearchBankAccount, never>>) => StudentResearchBankAccount;
981
+ /**
982
+ * Create a frozen instance of {@link StudentResearchBankAccount}, with defaults specified
983
+ * in Rust, in the {@link rusaint} crate.
984
+ */
985
+ new: (partial: Partial<StudentResearchBankAccount> & Required<Omit<StudentResearchBankAccount, never>>) => StudentResearchBankAccount;
986
+ /**
987
+ * Defaults specified in the {@link rusaint} crate.
988
+ */
989
+ defaults: () => Partial<StudentResearchBankAccount>;
990
+ }>;
991
+ /**
992
+ * 교직이수(주전공) 정보
993
+ */
994
+ export type StudentTeachingMajorInformation = {
995
+ majorName: string | undefined;
996
+ qualificationNumber: string | undefined;
997
+ initiationDate: string | undefined;
998
+ qualificationDate: string | undefined;
999
+ };
1000
+ /**
1001
+ * Generated factory for {@link StudentTeachingMajorInformation} record objects.
1002
+ */
1003
+ export declare const StudentTeachingMajorInformation: Readonly<{
1004
+ /**
1005
+ * Create a frozen instance of {@link StudentTeachingMajorInformation}, with defaults specified
1006
+ * in Rust, in the {@link rusaint} crate.
1007
+ */
1008
+ create: (partial: Partial<StudentTeachingMajorInformation> & Required<Omit<StudentTeachingMajorInformation, never>>) => StudentTeachingMajorInformation;
1009
+ /**
1010
+ * Create a frozen instance of {@link StudentTeachingMajorInformation}, with defaults specified
1011
+ * in Rust, in the {@link rusaint} crate.
1012
+ */
1013
+ new: (partial: Partial<StudentTeachingMajorInformation> & Required<Omit<StudentTeachingMajorInformation, never>>) => StudentTeachingMajorInformation;
1014
+ /**
1015
+ * Defaults specified in the {@link rusaint} crate.
1016
+ */
1017
+ defaults: () => Partial<StudentTeachingMajorInformation>;
1018
+ }>;
1019
+ /**
1020
+ * 교직이수(복수전공) 정보
1021
+ */
1022
+ export type StudentTeachingPluralMajorInformation = {
1023
+ majorName: string | undefined;
1024
+ qualificationNumber: string | undefined;
1025
+ qualificationDate: string | undefined;
1026
+ };
1027
+ /**
1028
+ * Generated factory for {@link StudentTeachingPluralMajorInformation} record objects.
1029
+ */
1030
+ export declare const StudentTeachingPluralMajorInformation: Readonly<{
1031
+ /**
1032
+ * Create a frozen instance of {@link StudentTeachingPluralMajorInformation}, with defaults specified
1033
+ * in Rust, in the {@link rusaint} crate.
1034
+ */
1035
+ create: (partial: Partial<StudentTeachingPluralMajorInformation> & Required<Omit<StudentTeachingPluralMajorInformation, never>>) => StudentTeachingPluralMajorInformation;
1036
+ /**
1037
+ * Create a frozen instance of {@link StudentTeachingPluralMajorInformation}, with defaults specified
1038
+ * in Rust, in the {@link rusaint} crate.
1039
+ */
1040
+ new: (partial: Partial<StudentTeachingPluralMajorInformation> & Required<Omit<StudentTeachingPluralMajorInformation, never>>) => StudentTeachingPluralMajorInformation;
1041
+ /**
1042
+ * Defaults specified in the {@link rusaint} crate.
1043
+ */
1044
+ defaults: () => Partial<StudentTeachingPluralMajorInformation>;
1045
+ }>;
1046
+ /**
1047
+ * 편입정보 내 기록
1048
+ */
1049
+ export type StudentTransferRecord = {
1050
+ isTransfer: string;
1051
+ admissionDate: string;
1052
+ admissionGrade: string;
1053
+ admissionTerm: string;
1054
+ acceptedCredit: string;
1055
+ acceptedTerms: string;
1056
+ };
1057
+ /**
1058
+ * Generated factory for {@link StudentTransferRecord} record objects.
1059
+ */
1060
+ export declare const StudentTransferRecord: Readonly<{
1061
+ /**
1062
+ * Create a frozen instance of {@link StudentTransferRecord}, with defaults specified
1063
+ * in Rust, in the {@link rusaint} crate.
1064
+ */
1065
+ create: (partial: Partial<StudentTransferRecord> & Required<Omit<StudentTransferRecord, never>>) => StudentTransferRecord;
1066
+ /**
1067
+ * Create a frozen instance of {@link StudentTransferRecord}, with defaults specified
1068
+ * in Rust, in the {@link rusaint} crate.
1069
+ */
1070
+ new: (partial: Partial<StudentTransferRecord> & Required<Omit<StudentTransferRecord, never>>) => StudentTransferRecord;
1071
+ /**
1072
+ * Defaults specified in the {@link rusaint} crate.
1073
+ */
1074
+ defaults: () => Partial<StudentTransferRecord>;
1075
+ }>;
1076
+ /**
1077
+ * 학생 편입 정보
1078
+ */
1079
+ export type StudentTransferRecords = {
1080
+ records: Array<StudentTransferRecord>;
1081
+ };
1082
+ /**
1083
+ * Generated factory for {@link StudentTransferRecords} record objects.
1084
+ */
1085
+ export declare const StudentTransferRecords: Readonly<{
1086
+ /**
1087
+ * Create a frozen instance of {@link StudentTransferRecords}, with defaults specified
1088
+ * in Rust, in the {@link rusaint} crate.
1089
+ */
1090
+ create: (partial: Partial<StudentTransferRecords> & Required<Omit<StudentTransferRecords, never>>) => StudentTransferRecords;
1091
+ /**
1092
+ * Create a frozen instance of {@link StudentTransferRecords}, with defaults specified
1093
+ * in Rust, in the {@link rusaint} crate.
1094
+ */
1095
+ new: (partial: Partial<StudentTransferRecords> & Required<Omit<StudentTransferRecords, never>>) => StudentTransferRecords;
1096
+ /**
1097
+ * Defaults specified in the {@link rusaint} crate.
1098
+ */
1099
+ defaults: () => Partial<StudentTransferRecords>;
1100
+ }>;
1101
+ /**
1102
+ * 학생의 직업 정보
1103
+ */
1104
+ export type StudentWorkInformation = {
1105
+ job: string | undefined;
1106
+ publicOfficial: string | undefined;
1107
+ companyName: string | undefined;
1108
+ departmentName: string | undefined;
1109
+ title: string | undefined;
1110
+ zipCode: string | undefined;
1111
+ address: string | undefined;
1112
+ specificAddress: string | undefined;
1113
+ telNumber: string | undefined;
1114
+ faxNumber: string | undefined;
1115
+ };
1116
+ /**
1117
+ * Generated factory for {@link StudentWorkInformation} record objects.
1118
+ */
1119
+ export declare const StudentWorkInformation: Readonly<{
1120
+ /**
1121
+ * Create a frozen instance of {@link StudentWorkInformation}, with defaults specified
1122
+ * in Rust, in the {@link rusaint} crate.
1123
+ */
1124
+ create: (partial: Partial<StudentWorkInformation> & Required<Omit<StudentWorkInformation, never>>) => StudentWorkInformation;
1125
+ /**
1126
+ * Create a frozen instance of {@link StudentWorkInformation}, with defaults specified
1127
+ * in Rust, in the {@link rusaint} crate.
1128
+ */
1129
+ new: (partial: Partial<StudentWorkInformation> & Required<Omit<StudentWorkInformation, never>>) => StudentWorkInformation;
1130
+ /**
1131
+ * Defaults specified in the {@link rusaint} crate.
1132
+ */
1133
+ defaults: () => Partial<StudentWorkInformation>;
1134
+ }>;
1135
+ /**
1136
+ * uniffi 지원을 위한 u32 Pair입니다.
1137
+ */
1138
+ export type UnsignedIntPair = {
1139
+ first: number;
1140
+ second: number;
1141
+ };
1142
+ /**
1143
+ * Generated factory for {@link UnsignedIntPair} record objects.
1144
+ */
1145
+ export declare const UnsignedIntPair: Readonly<{
1146
+ /**
1147
+ * Create a frozen instance of {@link UnsignedIntPair}, with defaults specified
1148
+ * in Rust, in the {@link rusaint} crate.
1149
+ */
1150
+ create: (partial: Partial<UnsignedIntPair> & Required<Omit<UnsignedIntPair, never>>) => UnsignedIntPair;
1151
+ /**
1152
+ * Create a frozen instance of {@link UnsignedIntPair}, with defaults specified
1153
+ * in Rust, in the {@link rusaint} crate.
1154
+ */
1155
+ new: (partial: Partial<UnsignedIntPair> & Required<Omit<UnsignedIntPair, never>>) => UnsignedIntPair;
1156
+ /**
1157
+ * Defaults specified in the {@link rusaint} crate.
1158
+ */
1159
+ defaults: () => Partial<UnsignedIntPair>;
1160
+ }>;
1161
+ /**
1162
+ * Typealias from the type name used in the UDL file to the builtin type. This
1163
+ * is needed because the UDL type name is used in function/method signatures.
1164
+ */
1165
+ export type U32Pair = UnsignedIntPair;
1166
+ export declare enum ClassScore_Tags {
1167
+ Pass = "Pass",
1168
+ Failed = "Failed",
1169
+ Score = "Score",
1170
+ Empty = "Empty"
1171
+ }
1172
+ /**
1173
+ * 과목 점수
1174
+ */
1175
+ export declare const ClassScore: Readonly<{
1176
+ instanceOf: (obj: any) => obj is ClassScore;
1177
+ Pass: {
1178
+ new (): {
1179
+ readonly tag: ClassScore_Tags.Pass;
1180
+ /**
1181
+ * @private
1182
+ * This field is private and should not be used, use `tag` instead.
1183
+ */
1184
+ readonly [uniffiTypeNameSymbol]: "ClassScore";
1185
+ };
1186
+ "new"(): {
1187
+ readonly tag: ClassScore_Tags.Pass;
1188
+ /**
1189
+ * @private
1190
+ * This field is private and should not be used, use `tag` instead.
1191
+ */
1192
+ readonly [uniffiTypeNameSymbol]: "ClassScore";
1193
+ };
1194
+ instanceOf(obj: any): obj is {
1195
+ readonly tag: ClassScore_Tags.Pass;
1196
+ /**
1197
+ * @private
1198
+ * This field is private and should not be used, use `tag` instead.
1199
+ */
1200
+ readonly [uniffiTypeNameSymbol]: "ClassScore";
1201
+ };
1202
+ };
1203
+ Failed: {
1204
+ new (): {
1205
+ readonly tag: ClassScore_Tags.Failed;
1206
+ /**
1207
+ * @private
1208
+ * This field is private and should not be used, use `tag` instead.
1209
+ */
1210
+ readonly [uniffiTypeNameSymbol]: "ClassScore";
1211
+ };
1212
+ "new"(): {
1213
+ readonly tag: ClassScore_Tags.Failed;
1214
+ /**
1215
+ * @private
1216
+ * This field is private and should not be used, use `tag` instead.
1217
+ */
1218
+ readonly [uniffiTypeNameSymbol]: "ClassScore";
1219
+ };
1220
+ instanceOf(obj: any): obj is {
1221
+ readonly tag: ClassScore_Tags.Failed;
1222
+ /**
1223
+ * @private
1224
+ * This field is private and should not be used, use `tag` instead.
1225
+ */
1226
+ readonly [uniffiTypeNameSymbol]: "ClassScore";
1227
+ };
1228
+ };
1229
+ Score: {
1230
+ new (v0: number): {
1231
+ readonly tag: ClassScore_Tags.Score;
1232
+ readonly inner: Readonly<[/*u32*/ number]>;
1233
+ /**
1234
+ * @private
1235
+ * This field is private and should not be used, use `tag` instead.
1236
+ */
1237
+ readonly [uniffiTypeNameSymbol]: "ClassScore";
1238
+ };
1239
+ "new"(v0: number): {
1240
+ readonly tag: ClassScore_Tags.Score;
1241
+ readonly inner: Readonly<[/*u32*/ number]>;
1242
+ /**
1243
+ * @private
1244
+ * This field is private and should not be used, use `tag` instead.
1245
+ */
1246
+ readonly [uniffiTypeNameSymbol]: "ClassScore";
1247
+ };
1248
+ instanceOf(obj: any): obj is {
1249
+ readonly tag: ClassScore_Tags.Score;
1250
+ readonly inner: Readonly<[/*u32*/ number]>;
1251
+ /**
1252
+ * @private
1253
+ * This field is private and should not be used, use `tag` instead.
1254
+ */
1255
+ readonly [uniffiTypeNameSymbol]: "ClassScore";
1256
+ };
1257
+ };
1258
+ Empty: {
1259
+ new (): {
1260
+ readonly tag: ClassScore_Tags.Empty;
1261
+ /**
1262
+ * @private
1263
+ * This field is private and should not be used, use `tag` instead.
1264
+ */
1265
+ readonly [uniffiTypeNameSymbol]: "ClassScore";
1266
+ };
1267
+ "new"(): {
1268
+ readonly tag: ClassScore_Tags.Empty;
1269
+ /**
1270
+ * @private
1271
+ * This field is private and should not be used, use `tag` instead.
1272
+ */
1273
+ readonly [uniffiTypeNameSymbol]: "ClassScore";
1274
+ };
1275
+ instanceOf(obj: any): obj is {
1276
+ readonly tag: ClassScore_Tags.Empty;
1277
+ /**
1278
+ * @private
1279
+ * This field is private and should not be used, use `tag` instead.
1280
+ */
1281
+ readonly [uniffiTypeNameSymbol]: "ClassScore";
1282
+ };
1283
+ };
1284
+ }>;
1285
+ /**
1286
+ * 과목 점수
1287
+ */
1288
+ export type ClassScore = InstanceType<(typeof ClassScore)[keyof Omit<typeof ClassScore, 'instanceOf'>]>;
1289
+ /**
1290
+ * 학위과정
1291
+ */
1292
+ export declare enum CourseType {
1293
+ /**
1294
+ * 박사과정
1295
+ */
1296
+ Phd = 0,
1297
+ /**
1298
+ * 석사과정
1299
+ */
1300
+ Master = 1,
1301
+ /**
1302
+ * 석박과정
1303
+ */
1304
+ PhdIntergrated = 2,
1305
+ /**
1306
+ * 연구과정
1307
+ */
1308
+ Research = 3,
1309
+ /**
1310
+ * 학사과정
1311
+ */
1312
+ Bachelor = 4
1313
+ }
1314
+ export declare enum LectureCategory_Tags {
1315
+ Major = "Major",
1316
+ RequiredElective = "RequiredElective",
1317
+ OptionalElective = "OptionalElective",
1318
+ Chapel = "Chapel",
1319
+ Education = "Education",
1320
+ Graduated = "Graduated",
1321
+ ConnectedMajor = "ConnectedMajor",
1322
+ UnitedMajor = "UnitedMajor",
1323
+ FindByProfessor = "FindByProfessor",
1324
+ FindByLecture = "FindByLecture",
1325
+ RecognizedOtherMajor = "RecognizedOtherMajor",
1326
+ Cyber = "Cyber"
1327
+ }
1328
+ /**
1329
+ * 강의를 찾을 때 사용하는 강의 카테고리
1330
+ */
1331
+ export declare const LectureCategory: Readonly<{
1332
+ instanceOf: (obj: any) => obj is LectureCategory;
1333
+ Major: {
1334
+ new (inner: {
1335
+ /**
1336
+ * 단과대명
1337
+ */ collage: string;
1338
+ /**
1339
+ * 학부명
1340
+ */ department: string;
1341
+ /**
1342
+ * 전공명
1343
+ */ major: string | undefined;
1344
+ }): {
1345
+ readonly tag: LectureCategory_Tags.Major;
1346
+ readonly inner: Readonly<{
1347
+ collage: string;
1348
+ department: string;
1349
+ major: string | undefined;
1350
+ }>;
1351
+ /**
1352
+ * @private
1353
+ * This field is private and should not be used, use `tag` instead.
1354
+ */
1355
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1356
+ };
1357
+ "new"(inner: {
1358
+ /**
1359
+ * 단과대명
1360
+ */ collage: string;
1361
+ /**
1362
+ * 학부명
1363
+ */ department: string;
1364
+ /**
1365
+ * 전공명
1366
+ */ major: string | undefined;
1367
+ }): {
1368
+ readonly tag: LectureCategory_Tags.Major;
1369
+ readonly inner: Readonly<{
1370
+ collage: string;
1371
+ department: string;
1372
+ major: string | undefined;
1373
+ }>;
1374
+ /**
1375
+ * @private
1376
+ * This field is private and should not be used, use `tag` instead.
1377
+ */
1378
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1379
+ };
1380
+ instanceOf(obj: any): obj is {
1381
+ readonly tag: LectureCategory_Tags.Major;
1382
+ readonly inner: Readonly<{
1383
+ collage: string;
1384
+ department: string;
1385
+ major: string | undefined;
1386
+ }>;
1387
+ /**
1388
+ * @private
1389
+ * This field is private and should not be used, use `tag` instead.
1390
+ */
1391
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1392
+ };
1393
+ };
1394
+ RequiredElective: {
1395
+ new (inner: {
1396
+ /**
1397
+ * 과목명
1398
+ */ lectureName: string;
1399
+ }): {
1400
+ readonly tag: LectureCategory_Tags.RequiredElective;
1401
+ readonly inner: Readonly<{
1402
+ lectureName: string;
1403
+ }>;
1404
+ /**
1405
+ * @private
1406
+ * This field is private and should not be used, use `tag` instead.
1407
+ */
1408
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1409
+ };
1410
+ "new"(inner: {
1411
+ /**
1412
+ * 과목명
1413
+ */ lectureName: string;
1414
+ }): {
1415
+ readonly tag: LectureCategory_Tags.RequiredElective;
1416
+ readonly inner: Readonly<{
1417
+ lectureName: string;
1418
+ }>;
1419
+ /**
1420
+ * @private
1421
+ * This field is private and should not be used, use `tag` instead.
1422
+ */
1423
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1424
+ };
1425
+ instanceOf(obj: any): obj is {
1426
+ readonly tag: LectureCategory_Tags.RequiredElective;
1427
+ readonly inner: Readonly<{
1428
+ lectureName: string;
1429
+ }>;
1430
+ /**
1431
+ * @private
1432
+ * This field is private and should not be used, use `tag` instead.
1433
+ */
1434
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1435
+ };
1436
+ };
1437
+ OptionalElective: {
1438
+ new (inner: {
1439
+ /**
1440
+ * 교양 분류
1441
+ */ category: string;
1442
+ }): {
1443
+ readonly tag: LectureCategory_Tags.OptionalElective;
1444
+ readonly inner: Readonly<{
1445
+ category: string;
1446
+ }>;
1447
+ /**
1448
+ * @private
1449
+ * This field is private and should not be used, use `tag` instead.
1450
+ */
1451
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1452
+ };
1453
+ "new"(inner: {
1454
+ /**
1455
+ * 교양 분류
1456
+ */ category: string;
1457
+ }): {
1458
+ readonly tag: LectureCategory_Tags.OptionalElective;
1459
+ readonly inner: Readonly<{
1460
+ category: string;
1461
+ }>;
1462
+ /**
1463
+ * @private
1464
+ * This field is private and should not be used, use `tag` instead.
1465
+ */
1466
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1467
+ };
1468
+ instanceOf(obj: any): obj is {
1469
+ readonly tag: LectureCategory_Tags.OptionalElective;
1470
+ readonly inner: Readonly<{
1471
+ category: string;
1472
+ }>;
1473
+ /**
1474
+ * @private
1475
+ * This field is private and should not be used, use `tag` instead.
1476
+ */
1477
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1478
+ };
1479
+ };
1480
+ Chapel: {
1481
+ new (inner: {
1482
+ /**
1483
+ * 과목명
1484
+ */ lectureName: string;
1485
+ }): {
1486
+ readonly tag: LectureCategory_Tags.Chapel;
1487
+ readonly inner: Readonly<{
1488
+ lectureName: string;
1489
+ }>;
1490
+ /**
1491
+ * @private
1492
+ * This field is private and should not be used, use `tag` instead.
1493
+ */
1494
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1495
+ };
1496
+ "new"(inner: {
1497
+ /**
1498
+ * 과목명
1499
+ */ lectureName: string;
1500
+ }): {
1501
+ readonly tag: LectureCategory_Tags.Chapel;
1502
+ readonly inner: Readonly<{
1503
+ lectureName: string;
1504
+ }>;
1505
+ /**
1506
+ * @private
1507
+ * This field is private and should not be used, use `tag` instead.
1508
+ */
1509
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1510
+ };
1511
+ instanceOf(obj: any): obj is {
1512
+ readonly tag: LectureCategory_Tags.Chapel;
1513
+ readonly inner: Readonly<{
1514
+ lectureName: string;
1515
+ }>;
1516
+ /**
1517
+ * @private
1518
+ * This field is private and should not be used, use `tag` instead.
1519
+ */
1520
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1521
+ };
1522
+ };
1523
+ Education: {
1524
+ new (): {
1525
+ readonly tag: LectureCategory_Tags.Education;
1526
+ /**
1527
+ * @private
1528
+ * This field is private and should not be used, use `tag` instead.
1529
+ */
1530
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1531
+ };
1532
+ "new"(): {
1533
+ readonly tag: LectureCategory_Tags.Education;
1534
+ /**
1535
+ * @private
1536
+ * This field is private and should not be used, use `tag` instead.
1537
+ */
1538
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1539
+ };
1540
+ instanceOf(obj: any): obj is {
1541
+ readonly tag: LectureCategory_Tags.Education;
1542
+ /**
1543
+ * @private
1544
+ * This field is private and should not be used, use `tag` instead.
1545
+ */
1546
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1547
+ };
1548
+ };
1549
+ Graduated: {
1550
+ new (inner: {
1551
+ /**
1552
+ * 단과대명
1553
+ */ collage: string;
1554
+ /**
1555
+ * 학부명
1556
+ */ department: string;
1557
+ }): {
1558
+ readonly tag: LectureCategory_Tags.Graduated;
1559
+ readonly inner: Readonly<{
1560
+ collage: string;
1561
+ department: string;
1562
+ }>;
1563
+ /**
1564
+ * @private
1565
+ * This field is private and should not be used, use `tag` instead.
1566
+ */
1567
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1568
+ };
1569
+ "new"(inner: {
1570
+ /**
1571
+ * 단과대명
1572
+ */ collage: string;
1573
+ /**
1574
+ * 학부명
1575
+ */ department: string;
1576
+ }): {
1577
+ readonly tag: LectureCategory_Tags.Graduated;
1578
+ readonly inner: Readonly<{
1579
+ collage: string;
1580
+ department: string;
1581
+ }>;
1582
+ /**
1583
+ * @private
1584
+ * This field is private and should not be used, use `tag` instead.
1585
+ */
1586
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1587
+ };
1588
+ instanceOf(obj: any): obj is {
1589
+ readonly tag: LectureCategory_Tags.Graduated;
1590
+ readonly inner: Readonly<{
1591
+ collage: string;
1592
+ department: string;
1593
+ }>;
1594
+ /**
1595
+ * @private
1596
+ * This field is private and should not be used, use `tag` instead.
1597
+ */
1598
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1599
+ };
1600
+ };
1601
+ ConnectedMajor: {
1602
+ new (inner: {
1603
+ /**
1604
+ * 전공명
1605
+ */ major: string;
1606
+ }): {
1607
+ readonly tag: LectureCategory_Tags.ConnectedMajor;
1608
+ readonly inner: Readonly<{
1609
+ major: string;
1610
+ }>;
1611
+ /**
1612
+ * @private
1613
+ * This field is private and should not be used, use `tag` instead.
1614
+ */
1615
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1616
+ };
1617
+ "new"(inner: {
1618
+ /**
1619
+ * 전공명
1620
+ */ major: string;
1621
+ }): {
1622
+ readonly tag: LectureCategory_Tags.ConnectedMajor;
1623
+ readonly inner: Readonly<{
1624
+ major: string;
1625
+ }>;
1626
+ /**
1627
+ * @private
1628
+ * This field is private and should not be used, use `tag` instead.
1629
+ */
1630
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1631
+ };
1632
+ instanceOf(obj: any): obj is {
1633
+ readonly tag: LectureCategory_Tags.ConnectedMajor;
1634
+ readonly inner: Readonly<{
1635
+ major: string;
1636
+ }>;
1637
+ /**
1638
+ * @private
1639
+ * This field is private and should not be used, use `tag` instead.
1640
+ */
1641
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1642
+ };
1643
+ };
1644
+ UnitedMajor: {
1645
+ new (inner: {
1646
+ /**
1647
+ * 전공명
1648
+ */ major: string;
1649
+ }): {
1650
+ readonly tag: LectureCategory_Tags.UnitedMajor;
1651
+ readonly inner: Readonly<{
1652
+ major: string;
1653
+ }>;
1654
+ /**
1655
+ * @private
1656
+ * This field is private and should not be used, use `tag` instead.
1657
+ */
1658
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1659
+ };
1660
+ "new"(inner: {
1661
+ /**
1662
+ * 전공명
1663
+ */ major: string;
1664
+ }): {
1665
+ readonly tag: LectureCategory_Tags.UnitedMajor;
1666
+ readonly inner: Readonly<{
1667
+ major: string;
1668
+ }>;
1669
+ /**
1670
+ * @private
1671
+ * This field is private and should not be used, use `tag` instead.
1672
+ */
1673
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1674
+ };
1675
+ instanceOf(obj: any): obj is {
1676
+ readonly tag: LectureCategory_Tags.UnitedMajor;
1677
+ readonly inner: Readonly<{
1678
+ major: string;
1679
+ }>;
1680
+ /**
1681
+ * @private
1682
+ * This field is private and should not be used, use `tag` instead.
1683
+ */
1684
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1685
+ };
1686
+ };
1687
+ FindByProfessor: {
1688
+ new (inner: {
1689
+ /**
1690
+ * 교수명
1691
+ */ keyword: string;
1692
+ }): {
1693
+ readonly tag: LectureCategory_Tags.FindByProfessor;
1694
+ readonly inner: Readonly<{
1695
+ keyword: string;
1696
+ }>;
1697
+ /**
1698
+ * @private
1699
+ * This field is private and should not be used, use `tag` instead.
1700
+ */
1701
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1702
+ };
1703
+ "new"(inner: {
1704
+ /**
1705
+ * 교수명
1706
+ */ keyword: string;
1707
+ }): {
1708
+ readonly tag: LectureCategory_Tags.FindByProfessor;
1709
+ readonly inner: Readonly<{
1710
+ keyword: string;
1711
+ }>;
1712
+ /**
1713
+ * @private
1714
+ * This field is private and should not be used, use `tag` instead.
1715
+ */
1716
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1717
+ };
1718
+ instanceOf(obj: any): obj is {
1719
+ readonly tag: LectureCategory_Tags.FindByProfessor;
1720
+ readonly inner: Readonly<{
1721
+ keyword: string;
1722
+ }>;
1723
+ /**
1724
+ * @private
1725
+ * This field is private and should not be used, use `tag` instead.
1726
+ */
1727
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1728
+ };
1729
+ };
1730
+ FindByLecture: {
1731
+ new (inner: {
1732
+ /**
1733
+ * 과목명
1734
+ */ keyword: string;
1735
+ }): {
1736
+ readonly tag: LectureCategory_Tags.FindByLecture;
1737
+ readonly inner: Readonly<{
1738
+ keyword: string;
1739
+ }>;
1740
+ /**
1741
+ * @private
1742
+ * This field is private and should not be used, use `tag` instead.
1743
+ */
1744
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1745
+ };
1746
+ "new"(inner: {
1747
+ /**
1748
+ * 과목명
1749
+ */ keyword: string;
1750
+ }): {
1751
+ readonly tag: LectureCategory_Tags.FindByLecture;
1752
+ readonly inner: Readonly<{
1753
+ keyword: string;
1754
+ }>;
1755
+ /**
1756
+ * @private
1757
+ * This field is private and should not be used, use `tag` instead.
1758
+ */
1759
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1760
+ };
1761
+ instanceOf(obj: any): obj is {
1762
+ readonly tag: LectureCategory_Tags.FindByLecture;
1763
+ readonly inner: Readonly<{
1764
+ keyword: string;
1765
+ }>;
1766
+ /**
1767
+ * @private
1768
+ * This field is private and should not be used, use `tag` instead.
1769
+ */
1770
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1771
+ };
1772
+ };
1773
+ RecognizedOtherMajor: {
1774
+ new (inner: {
1775
+ /**
1776
+ * 단과대명
1777
+ */ collage: string;
1778
+ /**
1779
+ * 학부명
1780
+ */ department: string;
1781
+ /**
1782
+ * 전공명
1783
+ */ major: string | undefined;
1784
+ }): {
1785
+ readonly tag: LectureCategory_Tags.RecognizedOtherMajor;
1786
+ readonly inner: Readonly<{
1787
+ collage: string;
1788
+ department: string;
1789
+ major: string | undefined;
1790
+ }>;
1791
+ /**
1792
+ * @private
1793
+ * This field is private and should not be used, use `tag` instead.
1794
+ */
1795
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1796
+ };
1797
+ "new"(inner: {
1798
+ /**
1799
+ * 단과대명
1800
+ */ collage: string;
1801
+ /**
1802
+ * 학부명
1803
+ */ department: string;
1804
+ /**
1805
+ * 전공명
1806
+ */ major: string | undefined;
1807
+ }): {
1808
+ readonly tag: LectureCategory_Tags.RecognizedOtherMajor;
1809
+ readonly inner: Readonly<{
1810
+ collage: string;
1811
+ department: string;
1812
+ major: string | undefined;
1813
+ }>;
1814
+ /**
1815
+ * @private
1816
+ * This field is private and should not be used, use `tag` instead.
1817
+ */
1818
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1819
+ };
1820
+ instanceOf(obj: any): obj is {
1821
+ readonly tag: LectureCategory_Tags.RecognizedOtherMajor;
1822
+ readonly inner: Readonly<{
1823
+ collage: string;
1824
+ department: string;
1825
+ major: string | undefined;
1826
+ }>;
1827
+ /**
1828
+ * @private
1829
+ * This field is private and should not be used, use `tag` instead.
1830
+ */
1831
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1832
+ };
1833
+ };
1834
+ Cyber: {
1835
+ new (): {
1836
+ readonly tag: LectureCategory_Tags.Cyber;
1837
+ /**
1838
+ * @private
1839
+ * This field is private and should not be used, use `tag` instead.
1840
+ */
1841
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1842
+ };
1843
+ "new"(): {
1844
+ readonly tag: LectureCategory_Tags.Cyber;
1845
+ /**
1846
+ * @private
1847
+ * This field is private and should not be used, use `tag` instead.
1848
+ */
1849
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1850
+ };
1851
+ instanceOf(obj: any): obj is {
1852
+ readonly tag: LectureCategory_Tags.Cyber;
1853
+ /**
1854
+ * @private
1855
+ * This field is private and should not be used, use `tag` instead.
1856
+ */
1857
+ readonly [uniffiTypeNameSymbol]: "LectureCategory";
1858
+ };
1859
+ };
1860
+ }>;
1861
+ /**
1862
+ * 강의를 찾을 때 사용하는 강의 카테고리
1863
+ */
1864
+ export type LectureCategory = InstanceType<(typeof LectureCategory)[keyof Omit<typeof LectureCategory, 'instanceOf'>]>;
1865
+ /**
1866
+ * 학기 종류
1867
+ *
1868
+ * 각 애플리케이션에서의 변환은 애플리케이션 내에서 직접 처리하여야 합니다.
1869
+ */
1870
+ export declare enum SemesterType {
1871
+ /**
1872
+ * 1학기
1873
+ */
1874
+ One = 0,
1875
+ /**
1876
+ * 여름학기
1877
+ */
1878
+ Summer = 1,
1879
+ /**
1880
+ * 2학기
1881
+ */
1882
+ Two = 2,
1883
+ /**
1884
+ * 겨울학기
1885
+ */
1886
+ Winter = 3
1887
+ }
1888
+ /**
1889
+ * 한 주의 요일을 표현합니다.
1890
+ */
1891
+ export declare enum Weekday {
1892
+ /**
1893
+ * 월요일
1894
+ */
1895
+ Mon = 0,
1896
+ /**
1897
+ * 화요일
1898
+ */
1899
+ Tue = 1,
1900
+ /**
1901
+ * 수요일
1902
+ */
1903
+ Wed = 2,
1904
+ /**
1905
+ * 목요일
1906
+ */
1907
+ Thu = 3,
1908
+ /**
1909
+ * 금요일
1910
+ */
1911
+ Fri = 4,
1912
+ /**
1913
+ * 토요일
1914
+ */
1915
+ Sat = 5,
1916
+ /**
1917
+ * 일요일
1918
+ */
1919
+ Sun = 6
1920
+ }
1921
+ /**
1922
+ * 새로운 `LectureCategory`를 만드는 빌더입니다.
1923
+ */
1924
+ export interface LectureCategoryBuilderInterface {
1925
+ /**
1926
+ * 채플 분류의 [`LectureCategory`]를 만듭니다.
1927
+ */
1928
+ chapel(lectureName: string): LectureCategory;
1929
+ /**
1930
+ * 연계전공 분류의 [`LectureCategory`]를 만듭니다.
1931
+ */
1932
+ connectedMajor(major: string): LectureCategory;
1933
+ /**
1934
+ * 숭실사이버대 분류의 [`LectureCategory`]를 만듭니다.
1935
+ */
1936
+ cyber(): LectureCategory;
1937
+ /**
1938
+ * 교직 분류의 [`LectureCategory`]를 만듭니다.
1939
+ */
1940
+ education(): LectureCategory;
1941
+ /**
1942
+ * 과목명으로 찾기 위한 [`LectureCategory`]를 만듭니다.
1943
+ */
1944
+ findByLecture(keyword: string): LectureCategory;
1945
+ /**
1946
+ * 교수명으로 찾기 위한 [`LectureCategory`]를 만듭니다.
1947
+ */
1948
+ findByProfessor(keyword: string): LectureCategory;
1949
+ /**
1950
+ * 대학원 분류의 [`LectureCategory`]를 만듭니다.
1951
+ */
1952
+ graduated(collage: string, department: string): LectureCategory;
1953
+ /**
1954
+ * 전공과목 분류의 [`LectureCategory`]를 만듭니다.
1955
+ */
1956
+ major(collage: string, department: string, major: string | undefined): LectureCategory;
1957
+ /**
1958
+ * 교양선택 분류의 [`LectureCategory`]를 만듭니다.
1959
+ */
1960
+ optionalElective(category: string): LectureCategory;
1961
+ /**
1962
+ * 타전공인정과목 분류의 [`LectureCategory`]를 만듭니다.
1963
+ */
1964
+ recognizedOtherMajor(collage: string, department: string, major: string | undefined): LectureCategory;
1965
+ /**
1966
+ * 교양필수 분류의 [`LectureCategory`]를 만듭니다.
1967
+ */
1968
+ requiredElective(lectureName: string): LectureCategory;
1969
+ /**
1970
+ * 융합전공 분류의 [`LectureCategory`]를 만듭니다.
1971
+ */
1972
+ unitedMajor(major: string): LectureCategory;
1973
+ }
1974
+ /**
1975
+ * 새로운 `LectureCategory`를 만드는 빌더입니다.
1976
+ */
1977
+ export declare class LectureCategoryBuilder extends UniffiAbstractObject implements LectureCategoryBuilderInterface {
1978
+ readonly [uniffiTypeNameSymbol] = "LectureCategoryBuilder";
1979
+ readonly [destructorGuardSymbol]: UniffiRustArcPtr;
1980
+ readonly [pointerLiteralSymbol]: UnsafeMutableRawPointer;
1981
+ /**
1982
+ * `LectureCategoryBuilder`를 만듭니다.
1983
+ */
1984
+ constructor();
1985
+ /**
1986
+ * 채플 분류의 [`LectureCategory`]를 만듭니다.
1987
+ */
1988
+ chapel(lectureName: string): LectureCategory;
1989
+ /**
1990
+ * 연계전공 분류의 [`LectureCategory`]를 만듭니다.
1991
+ */
1992
+ connectedMajor(major: string): LectureCategory;
1993
+ /**
1994
+ * 숭실사이버대 분류의 [`LectureCategory`]를 만듭니다.
1995
+ */
1996
+ cyber(): LectureCategory;
1997
+ /**
1998
+ * 교직 분류의 [`LectureCategory`]를 만듭니다.
1999
+ */
2000
+ education(): LectureCategory;
2001
+ /**
2002
+ * 과목명으로 찾기 위한 [`LectureCategory`]를 만듭니다.
2003
+ */
2004
+ findByLecture(keyword: string): LectureCategory;
2005
+ /**
2006
+ * 교수명으로 찾기 위한 [`LectureCategory`]를 만듭니다.
2007
+ */
2008
+ findByProfessor(keyword: string): LectureCategory;
2009
+ /**
2010
+ * 대학원 분류의 [`LectureCategory`]를 만듭니다.
2011
+ */
2012
+ graduated(collage: string, department: string): LectureCategory;
2013
+ /**
2014
+ * 전공과목 분류의 [`LectureCategory`]를 만듭니다.
2015
+ */
2016
+ major(collage: string, department: string, major: string | undefined): LectureCategory;
2017
+ /**
2018
+ * 교양선택 분류의 [`LectureCategory`]를 만듭니다.
2019
+ */
2020
+ optionalElective(category: string): LectureCategory;
2021
+ /**
2022
+ * 타전공인정과목 분류의 [`LectureCategory`]를 만듭니다.
2023
+ */
2024
+ recognizedOtherMajor(collage: string, department: string, major: string | undefined): LectureCategory;
2025
+ /**
2026
+ * 교양필수 분류의 [`LectureCategory`]를 만듭니다.
2027
+ */
2028
+ requiredElective(lectureName: string): LectureCategory;
2029
+ /**
2030
+ * 융합전공 분류의 [`LectureCategory`]를 만듭니다.
2031
+ */
2032
+ unitedMajor(major: string): LectureCategory;
2033
+ /**
2034
+ * {@inheritDoc uniffi-bindgen-react-native#UniffiAbstractObject.uniffiDestroy}
2035
+ */
2036
+ uniffiDestroy(): void;
2037
+ static instanceOf(obj: any): obj is LectureCategoryBuilder;
2038
+ }
2039
+ /**
2040
+ * This should be called before anything else.
2041
+ *
2042
+ * It is likely that this is being done for you by the library's `index.ts`.
2043
+ *
2044
+ * It checks versions of uniffi between when the Rust scaffolding was generated
2045
+ * and when the bindings were generated.
2046
+ *
2047
+ * It also initializes the machinery to enable Rust to talk back to Javascript.
2048
+ */
2049
+ declare function uniffiEnsureInitialized(): void;
2050
+ declare const _default: Readonly<{
2051
+ initialize: typeof uniffiEnsureInitialized;
2052
+ converters: {
2053
+ FfiConverterTypeChapelAbsenceRequest: {
2054
+ read(from: RustBuffer): ChapelAbsenceRequest;
2055
+ write(value: ChapelAbsenceRequest, into: RustBuffer): void;
2056
+ allocationSize(value: ChapelAbsenceRequest): number;
2057
+ lift(value: UniffiByteArray): ChapelAbsenceRequest;
2058
+ lower(value: ChapelAbsenceRequest): UniffiByteArray;
2059
+ };
2060
+ FfiConverterTypeChapelAttendance: {
2061
+ read(from: RustBuffer): ChapelAttendance;
2062
+ write(value: ChapelAttendance, into: RustBuffer): void;
2063
+ allocationSize(value: ChapelAttendance): number;
2064
+ lift(value: UniffiByteArray): ChapelAttendance;
2065
+ lower(value: ChapelAttendance): UniffiByteArray;
2066
+ };
2067
+ FfiConverterTypeChapelInformation: {
2068
+ read(from: RustBuffer): ChapelInformation;
2069
+ write(value: ChapelInformation, into: RustBuffer): void;
2070
+ allocationSize(value: ChapelInformation): number;
2071
+ lift(value: UniffiByteArray): ChapelInformation;
2072
+ lower(value: ChapelInformation): UniffiByteArray;
2073
+ };
2074
+ FfiConverterTypeClassGrade: {
2075
+ read(from: RustBuffer): ClassGrade;
2076
+ write(value: ClassGrade, into: RustBuffer): void;
2077
+ allocationSize(value: ClassGrade): number;
2078
+ lift(value: UniffiByteArray): ClassGrade;
2079
+ lower(value: ClassGrade): UniffiByteArray;
2080
+ };
2081
+ FfiConverterTypeClassScore: {
2082
+ read(from: RustBuffer): ClassScore;
2083
+ write(value: ClassScore, into: RustBuffer): void;
2084
+ allocationSize(value: ClassScore): number;
2085
+ lift(value: UniffiByteArray): ClassScore;
2086
+ lower(value: ClassScore): UniffiByteArray;
2087
+ };
2088
+ FfiConverterTypeCourseScheduleInformation: {
2089
+ read(from: RustBuffer): CourseScheduleInformation;
2090
+ write(value: CourseScheduleInformation, into: RustBuffer): void;
2091
+ allocationSize(value: CourseScheduleInformation): number;
2092
+ lift(value: UniffiByteArray): CourseScheduleInformation;
2093
+ lower(value: CourseScheduleInformation): UniffiByteArray;
2094
+ };
2095
+ FfiConverterTypeCourseType: {
2096
+ read(from: RustBuffer): CourseType;
2097
+ write(value: CourseType, into: RustBuffer): void;
2098
+ allocationSize(value: CourseType): number;
2099
+ lift(value: UniffiByteArray): CourseType;
2100
+ lower(value: CourseType): UniffiByteArray;
2101
+ };
2102
+ FfiConverterTypeGeneralChapelInformation: {
2103
+ read(from: RustBuffer): GeneralChapelInformation;
2104
+ write(value: GeneralChapelInformation, into: RustBuffer): void;
2105
+ allocationSize(value: GeneralChapelInformation): number;
2106
+ lift(value: UniffiByteArray): GeneralChapelInformation;
2107
+ lower(value: GeneralChapelInformation): UniffiByteArray;
2108
+ };
2109
+ FfiConverterTypeGradeSummary: {
2110
+ read(from: RustBuffer): GradeSummary;
2111
+ write(value: GradeSummary, into: RustBuffer): void;
2112
+ allocationSize(value: GradeSummary): number;
2113
+ lift(value: UniffiByteArray): GradeSummary;
2114
+ lower(value: GradeSummary): UniffiByteArray;
2115
+ };
2116
+ FfiConverterTypeGraduationRequirement: {
2117
+ read(from: RustBuffer): GraduationRequirement;
2118
+ write(value: GraduationRequirement, into: RustBuffer): void;
2119
+ allocationSize(value: GraduationRequirement): number;
2120
+ lift(value: UniffiByteArray): GraduationRequirement;
2121
+ lower(value: GraduationRequirement): UniffiByteArray;
2122
+ };
2123
+ FfiConverterTypeGraduationRequirements: {
2124
+ read(from: RustBuffer): GraduationRequirements;
2125
+ write(value: GraduationRequirements, into: RustBuffer): void;
2126
+ allocationSize(value: GraduationRequirements): number;
2127
+ lift(value: UniffiByteArray): GraduationRequirements;
2128
+ lower(value: GraduationRequirements): UniffiByteArray;
2129
+ };
2130
+ FfiConverterTypeGraduationStudent: {
2131
+ read(from: RustBuffer): GraduationStudent;
2132
+ write(value: GraduationStudent, into: RustBuffer): void;
2133
+ allocationSize(value: GraduationStudent): number;
2134
+ lift(value: UniffiByteArray): GraduationStudent;
2135
+ lower(value: GraduationStudent): UniffiByteArray;
2136
+ };
2137
+ FfiConverterTypeLecture: {
2138
+ read(from: RustBuffer): Lecture;
2139
+ write(value: Lecture, into: RustBuffer): void;
2140
+ allocationSize(value: Lecture): number;
2141
+ lift(value: UniffiByteArray): Lecture;
2142
+ lower(value: Lecture): UniffiByteArray;
2143
+ };
2144
+ FfiConverterTypeLectureAssessmentResult: {
2145
+ read(from: RustBuffer): LectureAssessmentResult;
2146
+ write(value: LectureAssessmentResult, into: RustBuffer): void;
2147
+ allocationSize(value: LectureAssessmentResult): number;
2148
+ lift(value: UniffiByteArray): LectureAssessmentResult;
2149
+ lower(value: LectureAssessmentResult): UniffiByteArray;
2150
+ };
2151
+ FfiConverterTypeLectureCategory: {
2152
+ read(from: RustBuffer): LectureCategory;
2153
+ write(value: LectureCategory, into: RustBuffer): void;
2154
+ allocationSize(value: LectureCategory): number;
2155
+ lift(value: UniffiByteArray): LectureCategory;
2156
+ lower(value: LectureCategory): UniffiByteArray;
2157
+ };
2158
+ FfiConverterTypeLectureCategoryBuilder: FfiConverterObject<LectureCategoryBuilderInterface>;
2159
+ FfiConverterTypePersonalCourseSchedule: {
2160
+ read(from: RustBuffer): PersonalCourseSchedule;
2161
+ write(value: PersonalCourseSchedule, into: RustBuffer): void;
2162
+ allocationSize(value: PersonalCourseSchedule): number;
2163
+ lift(value: UniffiByteArray): PersonalCourseSchedule;
2164
+ lower(value: PersonalCourseSchedule): UniffiByteArray;
2165
+ };
2166
+ FfiConverterTypeScholarship: {
2167
+ read(from: RustBuffer): Scholarship;
2168
+ write(value: Scholarship, into: RustBuffer): void;
2169
+ allocationSize(value: Scholarship): number;
2170
+ lift(value: UniffiByteArray): Scholarship;
2171
+ lower(value: Scholarship): UniffiByteArray;
2172
+ };
2173
+ FfiConverterTypeSemesterGrade: {
2174
+ read(from: RustBuffer): SemesterGrade;
2175
+ write(value: SemesterGrade, into: RustBuffer): void;
2176
+ allocationSize(value: SemesterGrade): number;
2177
+ lift(value: UniffiByteArray): SemesterGrade;
2178
+ lower(value: SemesterGrade): UniffiByteArray;
2179
+ };
2180
+ FfiConverterTypeSemesterType: {
2181
+ read(from: RustBuffer): SemesterType;
2182
+ write(value: SemesterType, into: RustBuffer): void;
2183
+ allocationSize(value: SemesterType): number;
2184
+ lift(value: UniffiByteArray): SemesterType;
2185
+ lower(value: SemesterType): UniffiByteArray;
2186
+ };
2187
+ FfiConverterTypeStudentAcademicRecord: {
2188
+ read(from: RustBuffer): StudentAcademicRecord;
2189
+ write(value: StudentAcademicRecord, into: RustBuffer): void;
2190
+ allocationSize(value: StudentAcademicRecord): number;
2191
+ lift(value: UniffiByteArray): StudentAcademicRecord;
2192
+ lower(value: StudentAcademicRecord): UniffiByteArray;
2193
+ };
2194
+ FfiConverterTypeStudentAcademicRecords: {
2195
+ read(from: RustBuffer): StudentAcademicRecords;
2196
+ write(value: StudentAcademicRecords, into: RustBuffer): void;
2197
+ allocationSize(value: StudentAcademicRecords): number;
2198
+ lift(value: UniffiByteArray): StudentAcademicRecords;
2199
+ lower(value: StudentAcademicRecords): UniffiByteArray;
2200
+ };
2201
+ FfiConverterTypeStudentBankAccount: {
2202
+ read(from: RustBuffer): StudentBankAccount;
2203
+ write(value: StudentBankAccount, into: RustBuffer): void;
2204
+ allocationSize(value: StudentBankAccount): number;
2205
+ lift(value: UniffiByteArray): StudentBankAccount;
2206
+ lower(value: StudentBankAccount): UniffiByteArray;
2207
+ };
2208
+ FfiConverterTypeStudentFamily: {
2209
+ read(from: RustBuffer): StudentFamily;
2210
+ write(value: StudentFamily, into: RustBuffer): void;
2211
+ allocationSize(value: StudentFamily): number;
2212
+ lift(value: UniffiByteArray): StudentFamily;
2213
+ lower(value: StudentFamily): UniffiByteArray;
2214
+ };
2215
+ FfiConverterTypeStudentFamilyMember: {
2216
+ read(from: RustBuffer): StudentFamilyMember;
2217
+ write(value: StudentFamilyMember, into: RustBuffer): void;
2218
+ allocationSize(value: StudentFamilyMember): number;
2219
+ lift(value: UniffiByteArray): StudentFamilyMember;
2220
+ lower(value: StudentFamilyMember): UniffiByteArray;
2221
+ };
2222
+ FfiConverterTypeStudentForignStudyInformation: {
2223
+ read(from: RustBuffer): StudentForignStudyInformation;
2224
+ write(value: StudentForignStudyInformation, into: RustBuffer): void;
2225
+ allocationSize(value: StudentForignStudyInformation): number;
2226
+ lift(value: UniffiByteArray): StudentForignStudyInformation;
2227
+ lower(value: StudentForignStudyInformation): UniffiByteArray;
2228
+ };
2229
+ FfiConverterTypeStudentGraduation: {
2230
+ read(from: RustBuffer): StudentGraduation;
2231
+ write(value: StudentGraduation, into: RustBuffer): void;
2232
+ allocationSize(value: StudentGraduation): number;
2233
+ lift(value: UniffiByteArray): StudentGraduation;
2234
+ lower(value: StudentGraduation): UniffiByteArray;
2235
+ };
2236
+ FfiConverterTypeStudentInformation: {
2237
+ read(from: RustBuffer): StudentInformation;
2238
+ write(value: StudentInformation, into: RustBuffer): void;
2239
+ allocationSize(value: StudentInformation): number;
2240
+ lift(value: UniffiByteArray): StudentInformation;
2241
+ lower(value: StudentInformation): UniffiByteArray;
2242
+ };
2243
+ FfiConverterTypeStudentLifelongInformation: {
2244
+ read(from: RustBuffer): StudentLifelongInformation;
2245
+ write(value: StudentLifelongInformation, into: RustBuffer): void;
2246
+ allocationSize(value: StudentLifelongInformation): number;
2247
+ lift(value: UniffiByteArray): StudentLifelongInformation;
2248
+ lower(value: StudentLifelongInformation): UniffiByteArray;
2249
+ };
2250
+ FfiConverterTypeStudentQualification: {
2251
+ read(from: RustBuffer): StudentQualification;
2252
+ write(value: StudentQualification, into: RustBuffer): void;
2253
+ allocationSize(value: StudentQualification): number;
2254
+ lift(value: UniffiByteArray): StudentQualification;
2255
+ lower(value: StudentQualification): UniffiByteArray;
2256
+ };
2257
+ FfiConverterTypeStudentReligion: {
2258
+ read(from: RustBuffer): StudentReligion;
2259
+ write(value: StudentReligion, into: RustBuffer): void;
2260
+ allocationSize(value: StudentReligion): number;
2261
+ lift(value: UniffiByteArray): StudentReligion;
2262
+ lower(value: StudentReligion): UniffiByteArray;
2263
+ };
2264
+ FfiConverterTypeStudentResearchBankAccount: {
2265
+ read(from: RustBuffer): StudentResearchBankAccount;
2266
+ write(value: StudentResearchBankAccount, into: RustBuffer): void;
2267
+ allocationSize(value: StudentResearchBankAccount): number;
2268
+ lift(value: UniffiByteArray): StudentResearchBankAccount;
2269
+ lower(value: StudentResearchBankAccount): UniffiByteArray;
2270
+ };
2271
+ FfiConverterTypeStudentTeachingMajorInformation: {
2272
+ read(from: RustBuffer): StudentTeachingMajorInformation;
2273
+ write(value: StudentTeachingMajorInformation, into: RustBuffer): void;
2274
+ allocationSize(value: StudentTeachingMajorInformation): number;
2275
+ lift(value: UniffiByteArray): StudentTeachingMajorInformation;
2276
+ lower(value: StudentTeachingMajorInformation): UniffiByteArray;
2277
+ };
2278
+ FfiConverterTypeStudentTeachingPluralMajorInformation: {
2279
+ read(from: RustBuffer): StudentTeachingPluralMajorInformation;
2280
+ write(value: StudentTeachingPluralMajorInformation, into: RustBuffer): void;
2281
+ allocationSize(value: StudentTeachingPluralMajorInformation): number;
2282
+ lift(value: UniffiByteArray): StudentTeachingPluralMajorInformation;
2283
+ lower(value: StudentTeachingPluralMajorInformation): UniffiByteArray;
2284
+ };
2285
+ FfiConverterTypeStudentTransferRecord: {
2286
+ read(from: RustBuffer): StudentTransferRecord;
2287
+ write(value: StudentTransferRecord, into: RustBuffer): void;
2288
+ allocationSize(value: StudentTransferRecord): number;
2289
+ lift(value: UniffiByteArray): StudentTransferRecord;
2290
+ lower(value: StudentTransferRecord): UniffiByteArray;
2291
+ };
2292
+ FfiConverterTypeStudentTransferRecords: {
2293
+ read(from: RustBuffer): StudentTransferRecords;
2294
+ write(value: StudentTransferRecords, into: RustBuffer): void;
2295
+ allocationSize(value: StudentTransferRecords): number;
2296
+ lift(value: UniffiByteArray): StudentTransferRecords;
2297
+ lower(value: StudentTransferRecords): UniffiByteArray;
2298
+ };
2299
+ FfiConverterTypeStudentWorkInformation: {
2300
+ read(from: RustBuffer): StudentWorkInformation;
2301
+ write(value: StudentWorkInformation, into: RustBuffer): void;
2302
+ allocationSize(value: StudentWorkInformation): number;
2303
+ lift(value: UniffiByteArray): StudentWorkInformation;
2304
+ lower(value: StudentWorkInformation): UniffiByteArray;
2305
+ };
2306
+ FfiConverterTypeU32Pair: {
2307
+ read(from: RustBuffer): UnsignedIntPair;
2308
+ write(value: UnsignedIntPair, into: RustBuffer): void;
2309
+ allocationSize(value: UnsignedIntPair): number;
2310
+ lift(value: UniffiByteArray): UnsignedIntPair;
2311
+ lower(value: UnsignedIntPair): UniffiByteArray;
2312
+ };
2313
+ FfiConverterTypeUnsignedIntPair: {
2314
+ read(from: RustBuffer): UnsignedIntPair;
2315
+ write(value: UnsignedIntPair, into: RustBuffer): void;
2316
+ allocationSize(value: UnsignedIntPair): number;
2317
+ lift(value: UniffiByteArray): UnsignedIntPair;
2318
+ lower(value: UnsignedIntPair): UniffiByteArray;
2319
+ };
2320
+ FfiConverterTypeWeekday: {
2321
+ read(from: RustBuffer): Weekday;
2322
+ write(value: Weekday, into: RustBuffer): void;
2323
+ allocationSize(value: Weekday): number;
2324
+ lift(value: UniffiByteArray): Weekday;
2325
+ lower(value: Weekday): UniffiByteArray;
2326
+ };
2327
+ };
2328
+ }>;
2329
+ export default _default;
2330
+ //# sourceMappingURL=rusaint.d.ts.map