Method: PureCloud::ReportingExportJobResponse#==
- Defined in:
- lib/purecloudplatformclientv2/models/reporting_export_job_response.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 |
# File 'lib/purecloudplatformclientv2/models/reporting_export_job_response.rb', line 864 def ==(o) return true if self.equal?(o) self.class == o.class && id == o.id && name == o.name && run_id == o.run_id && status == o.status && time_zone == o.time_zone && export_format == o.export_format && interval == o.interval && download_url == o.download_url && view_type == o.view_type && == o. && period == o.period && filter == o.filter && read == o.read && created_date_time == o.created_date_time && modified_date_time == o.modified_date_time && locale == o.locale && percentage_complete == o.percentage_complete && has_format_durations == o.has_format_durations && has_split_filters == o.has_split_filters && exclude_empty_rows == o.exclude_empty_rows && has_split_by_media == o.has_split_by_media && selected_columns == o.selected_columns && has_custom_participant_attributes == o.has_custom_participant_attributes && recipient_emails == o.recipient_emails && email_statuses == o.email_statuses && enabled == o.enabled && self_uri == o.self_uri end |