@@ -192,7 +192,7 @@ func (s *QuotaService) NewQuotaBalanceParams(account string, domainid string) *Q
192
192
193
193
// Create a quota balance statement
194
194
func (s * QuotaService ) QuotaBalance (p * QuotaBalanceParams ) (* QuotaBalanceResponse , error ) {
195
- resp , err := s .cs .newPostRequest ("quotaBalance" , p .toURLValues ())
195
+ resp , err := s .cs .newRequest ("quotaBalance" , p .toURLValues ())
196
196
if err != nil {
197
197
return nil , err
198
198
}
@@ -408,7 +408,7 @@ func (s *QuotaService) NewQuotaIsEnabledParams() *QuotaIsEnabledParams {
408
408
409
409
// Return true if the plugin is enabled
410
410
func (s * QuotaService ) QuotaIsEnabled (p * QuotaIsEnabledParams ) (* QuotaIsEnabledResponse , error ) {
411
- resp , err := s .cs .newPostRequest ("quotaIsEnabled" , p .toURLValues ())
411
+ resp , err := s .cs .newRequest ("quotaIsEnabled" , p .toURLValues ())
412
412
if err != nil {
413
413
return nil , err
414
414
}
@@ -598,7 +598,7 @@ func (s *QuotaService) NewQuotaStatementParams(account string, domainid string,
598
598
599
599
// Create a quota statement
600
600
func (s * QuotaService ) QuotaStatement (p * QuotaStatementParams ) (* QuotaStatementResponse , error ) {
601
- resp , err := s .cs .newPostRequest ("quotaStatement" , p .toURLValues ())
601
+ resp , err := s .cs .newRequest ("quotaStatement" , p .toURLValues ())
602
602
if err != nil {
603
603
return nil , err
604
604
}
@@ -801,7 +801,7 @@ func (s *QuotaService) NewQuotaSummaryParams() *QuotaSummaryParams {
801
801
802
802
// Lists balance and quota usage for all accounts
803
803
func (s * QuotaService ) QuotaSummary (p * QuotaSummaryParams ) (* QuotaSummaryResponse , error ) {
804
- resp , err := s .cs .newPostRequest ("quotaSummary" , p .toURLValues ())
804
+ resp , err := s .cs .newRequest ("quotaSummary" , p .toURLValues ())
805
805
if err != nil {
806
806
return nil , err
807
807
}
@@ -1449,7 +1449,7 @@ func (s *QuotaService) NewQuotaTariffListParams() *QuotaTariffListParams {
1449
1449
1450
1450
// Lists all quota tariff plans
1451
1451
func (s * QuotaService ) QuotaTariffList (p * QuotaTariffListParams ) (* QuotaTariffListResponse , error ) {
1452
- resp , err := s .cs .newPostRequest ("quotaTariffList" , p .toURLValues ())
1452
+ resp , err := s .cs .newRequest ("quotaTariffList" , p .toURLValues ())
1453
1453
if err != nil {
1454
1454
return nil , err
1455
1455
}
0 commit comments