File tree Expand file tree Collapse file tree 10 files changed +1369
-1246
lines changed Expand file tree Collapse file tree 10 files changed +1369
-1246
lines changed Original file line number Diff line number Diff line change 3030// Revision
3131//
3232
33- [ assembly: AssemblyVersion ( "22.5.0 " ) ]
34- [ assembly: AssemblyFileVersion ( "22.5.0 " ) ]
33+ [ assembly: AssemblyVersion ( "22.6.1 " ) ]
34+ [ assembly: AssemblyFileVersion ( "22.6.1 " ) ]
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 162162 <Compile Include =" models\AccountLicenseKeyModel.cs" />
163163 <Compile Include =" models\AccountMigrationStatusModel.cs" />
164164 <Compile Include =" models\AccountModel.cs" />
165+ <Compile Include =" models\AccountTsaAccessDurationModel.cs" />
166+ <Compile Include =" models\AccountTsaAccessModel.cs" />
165167 <Compile Include =" models\ACHEntryDetailModel.cs" />
166168 <Compile Include =" models\ActivateAccountModel.cs" />
167169 <Compile Include =" models\AddressesModel.cs" />
Original file line number Diff line number Diff line change 167167 <Compile Include =" models\AccountLicenseKeyModel.cs" />
168168 <Compile Include =" models\AccountMigrationStatusModel.cs" />
169169 <Compile Include =" models\AccountModel.cs" />
170+ <Compile Include =" models\AccountTsaAccessDurationModel.cs" />
171+ <Compile Include =" models\AccountTsaAccessModel.cs" />
170172 <Compile Include =" models\ACHEntryDetailModel.cs" />
171173 <Compile Include =" models\ActivateAccountModel.cs" />
172174 <Compile Include =" models\AddressesModel.cs" />
Original file line number Diff line number Diff line change 167167 <Compile Include =" models\AccountLicenseKeyModel.cs" />
168168 <Compile Include =" models\AccountMigrationStatusModel.cs" />
169169 <Compile Include =" models\AccountModel.cs" />
170+ <Compile Include =" models\AccountTsaAccessDurationModel.cs" />
171+ <Compile Include =" models\AccountTsaAccessModel.cs" />
170172 <Compile Include =" models\ACHEntryDetailModel.cs" />
171173 <Compile Include =" models\ActivateAccountModel.cs" />
172174 <Compile Include =" models\AddressesModel.cs" />
Original file line number Diff line number Diff line change 33 <metadata >
44 <id >Avalara.AvaTax</id >
55
6- <version >22.5.0 </version >
6+ <version >22.6.1 </version >
77
88 <title >Avalara AvaTax SDK</title >
99 <description >Add world-class tax estimation and calculation to your project with Avalara's AvaTax suite of APIs and services.</description >
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using Newtonsoft . Json ;
4+
5+ /*
6+ * AvaTax API Client Library
7+ *
8+ * (c) 2004-2019 Avalara, Inc.
9+ *
10+ * For the full copyright and license information, please view the LICENSE
11+ * file that was distributed with this source code.
12+ *
13+ * @author Genevieve Conty
14+ * @author Greg Hester
15+ * Swagger name: AvaTaxClient
16+ */
17+
18+ namespace Avalara . AvaTax . RestClient
19+ {
20+ /// <summary>
21+ /// Specifies a duration for which to grant TSA accounts write access.
22+ /// See AVT-25316
23+ /// </summary>
24+ public class AccountTsaAccessDurationModel
25+ {
26+ /// <summary>
27+ /// Number of minutes
28+ /// </summary>
29+ public Int32 ? minutes { get ; set ; }
30+
31+ /// <summary>
32+ /// Number of hours
33+ /// </summary>
34+ public Int32 ? hours { get ; set ; }
35+
36+ /// <summary>
37+ /// Number of days
38+ /// </summary>
39+ public Int32 ? days { get ; set ; }
40+
41+
42+ /// <summary>
43+ /// Convert this object to a JSON string of itself
44+ /// </summary>
45+ /// <returns>A JSON string of this object</returns>
46+ public override string ToString ( )
47+ {
48+ return JsonConvert . SerializeObject ( this , new JsonSerializerSettings ( ) { Formatting = Formatting . Indented } ) ;
49+ }
50+ }
51+ }
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Collections . Generic ;
3+ using Newtonsoft . Json ;
4+
5+ /*
6+ * AvaTax API Client Library
7+ *
8+ * (c) 2004-2019 Avalara, Inc.
9+ *
10+ * For the full copyright and license information, please view the LICENSE
11+ * file that was distributed with this source code.
12+ *
13+ * @author Genevieve Conty
14+ * @author Greg Hester
15+ * Swagger name: AvaTaxClient
16+ */
17+
18+ namespace Avalara . AvaTax . RestClient
19+ {
20+ /// <summary>
21+ /// Descibes a record of an account granting TSA accounts write access.
22+ /// See AVT-25316
23+ /// </summary>
24+ public class AccountTsaAccessModel
25+ {
26+ /// <summary>
27+ /// The id of the account to which the TSA access entry belongs to.
28+ /// </summary>
29+ public Int32 ? accountId { get ; set ; }
30+
31+ /// <summary>
32+ /// The user ID of the user who last modified this record.
33+ /// </summary>
34+ public Int32 ? modifiedUserId { get ; set ; }
35+
36+ /// <summary>
37+ /// The date/time when this record was last modified.
38+ /// </summary>
39+ public DateTime ? modifiedDate { get ; set ; }
40+
41+ /// <summary>
42+ /// The date/time when this TSA access record expires.
43+ /// </summary>
44+ public DateTime ? endDate { get ; set ; }
45+
46+
47+ /// <summary>
48+ /// Convert this object to a JSON string of itself
49+ /// </summary>
50+ /// <returns>A JSON string of this object</returns>
51+ public override string ToString ( )
52+ {
53+ return JsonConvert . SerializeObject ( this , new JsonSerializerSettings ( ) { Formatting = Formatting . Indented } ) ;
54+ }
55+ }
56+ }
Original file line number Diff line number Diff line change @@ -37,6 +37,11 @@ public class FilingReturnModel
3737 /// </summary>
3838 public Int64 ? filingCalendarId { get ; set ; }
3939
40+ /// <summary>
41+ /// The registration ID from the return's filing calendar.
42+ /// </summary>
43+ public String registrationId { get ; set ; }
44+
4045 /// <summary>
4146 /// The resourceFileId of the return. Will be null if not available.
4247 /// </summary>
Original file line number Diff line number Diff line change @@ -32,6 +32,11 @@ public class MultiTaxFilingReturnModel
3232 /// </summary>
3333 public Int64 ? filingCalendarId { get ; set ; }
3434
35+ /// <summary>
36+ /// The registration ID from the return's filing calendar.
37+ /// </summary>
38+ public String registrationId { get ; set ; }
39+
3540 /// <summary>
3641 /// The current status of the filing return.
3742 /// </summary>
You can’t perform that action at this time.
0 commit comments