pub struct ClosingPatchRequest {
pub closing_type: Option<String>,
pub closing_start: Option<String>,
pub closing_end: Option<String>,
pub scheduled_ceremony_time: Option<String>,
pub timezone: Option<String>,
pub closing_parties: Option<Vec<ClosingPartyPatchRequest>>,
pub special_instructions: Option<String>,
pub e_note_sign_start: Option<String>,
pub e_note_sign_end: Option<String>,
}
Fields§
§closing_type: Option<String>
The type of closing
closing_start: Option<String>
ISO 8601 datetime when the closing is set to start. This time will dictate when sign-ahead closing documents will be released to borrower(s) for eSign. A timezone offset MUST be provided in the date string to ensure sign ahead documents are released accurately for borrower(s), e.g., not a day earlier than expected.
closing_end: Option<String>
ISO 8601 datetime when the closing is set to end. Borrower(s) will not be able to review or eSign closing documents after this time. A timezone offset MUST be provided in the date string to ensure closing documents expire at the correct time for borrower(s).
scheduled_ceremony_time: Option<String>
ISO 8601 datetime that represents a closing “day”, which will be reflected in Settlement Agent Workspace and will be assumed to be the day when a borrower meets with their notary. If this value is not provided, it will have the same value as closingStart. This value should be before closingEnd.
timezone: Option<String>
IMPORTANT - this field is only used by the browser in the webapp and does not effect the closing start time declared in this request. Additionally, closingStart and closingEnd must include the correct timezone offset.
For example if you wish to use Central time, the timezone value would be “America/Chicago” and the closingStart or closingDate value must include an offset of “-06:00” during standard time i.e. “2020-12-12T00:00:00-06:00” or “-05:00” during daylight savings time “2021-06-12T00:00:00-05:00”
Options include:
“America/New_York” (Eastern time)
“America/Chicago” (Central time)
“America/Denver” (Mountain time - day light savings time applicable)
“America/Phoenix” (Arizona time - day light savings not applicable)
“America/Los_Angeles” (Pacific time)
“America/Anchorage” (Alaska time)
“Pacific/Honolulu” (Hawaii time)
closing_parties: Option<Vec<ClosingPartyPatchRequest>>
List of closing parties
special_instructions: Option<String>
Special closing instructions
e_note_sign_start: Option<String>
ISO 8601 format. The time component needs to be at midnight. Optional. Send as null to clear out the existing value and use defaults.
e_note_sign_end: Option<String>
ISO 8601 format. The time component needs to be at end of day 23:59:59. Optional. Send as null to clear out the existing value and use defaults.