/// <summary> /// Initializes a new instance of the <see cref="V1UpdateFeeRequest" /> class. /// </summary> /// <param name="Body">An object containing the fields to POST for the request. See the corresponding object definition for field details. (required).</param> public V1UpdateFeeRequest(V1Fee Body = default(V1Fee)) { // to ensure "Body" is required (not null) if (Body == null) { throw new InvalidDataException("Body is a required property for V1UpdateFeeRequest and cannot be null"); } else { this.Body = Body; } }
/// <summary> /// Initializes a new instance of the <see cref="V1CreateFeeRequest" /> class. /// </summary> /// <param name="Body">An object containing the fields to POST for the request. See the corresponding object definition for field details..</param> public V1CreateFeeRequest(V1Fee Body = default(V1Fee)) { this.Body = Body; }